Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › MultiPlayer Game Hacks & Cheats › Other MMORPG Hacks › Vindictus Hacks & Cheats › [Updated] Labyrinth Leveling Bot (Auto-IT)

[Updated] Labyrinth Leveling Bot (Auto-IT)

Posts 1–10 of 10 · Page 1 of 1
XA
xabbis
[Updated] Labyrinth Leveling Bot (Auto-IT)
Requirements
-PubConsole v1.6
-God Mode and 1 Hit Kill V6.5

HotKeys
*F1 - Starts the script
*F2 - Stops the Script
*F3 - Pauses the script
*F4 - Displays Runs Completed and Levels Grown
-Only searches for levels grown in fullscreen mode
*1 - Show Vindictus
*2 - Hide Vindictus (Allows you to bot in the background)
-Havnt tested if mouse is released in hide mode, i only use it for watching vids while botting
*3 - Inserts binds needed into console
-Wait until your at the login screen to insert binds

*Edit* Start it once your inside the dungeon on the first floor.

Code:
HotKeySet("{F1}", "Start")
HotKeySet("{F2}", "Stop")
HotKeySet("{F3}", "Pause")
HotKeySet("{F4}", "Runs")
HotKeySet("{1}", "Show")
HotKeySet("{2}", "Hide")
HotKeySet("{3}", "Inject")
Local $pause, $i, $b, $show, $concheck
$concheck = WinExists("PubConsole")
$pause = 1
$i = 0
$b = 0
$show = False
While 1
	WinWaitActive("Vindictus", "")
WEnd
Func Start()
	For $MAPSKIP = 1 To 10
		ControlSend("Vindictus", "", "", "{RIGHT}") ;next
		Sleep(1000)
	Next
	Sleep(7500)
	For $MAPSKIP = 1 To 10
		ControlSend("Vindictus", "", "", "{RIGHT}") ;next
		Sleep(1000)
	Next
	Sleep(7500)
	For $MAPSKIP = 1 To 10
		ControlSend("Vindictus", "", "", "{RIGHT}") ;next
		Sleep(1000)
	Next
	Sleep(7500)
	For $MAPSKIP = 1 To 10
		ControlSend("Vindictus", "", "", "{RIGHT}") ;next
		Sleep(1000)
	Next
	Sleep(7500)
	Call("kill")
EndFunc   ;==>Start
Func kill()
	While 1
		Sleep(1500)
		ControlSend("Vindictus", "", "", "{NUMPADDOT}") ;ohk
		Sleep(100)
		ControlSend("Vindictus", "", "", "{NUMPAD0}") ;god
		Sleep(100)
		ControlSend("Vindictus", "", "", "{NUMPAD4}") ;spear
		Sleep(100)
		ControlSend("Vindictus", "", "", "{,}") ;spam height
		Sleep(100)
		ControlSend("Vindictus", "", "", "{NUMPAD3}") ;x3 time
		Sleep(100)
		ControlSend("Vindictus", "", "", "{W DOWN}")
		Sleep(5000)
		ControlSend("Vindictus", "", "", "{W UP}")
		For $spear = 1 To 20
			ControlSend("Vindictus", "", "", "{F}")
			Sleep(100)
		Next
		For $trans = 1 To 5
			ControlSend("Vindictus", "", "", "{NUMPAD7}") ;pal 1
			Sleep(2500)
		Next
		Sleep(1000)
		Call("MAPRELOAD")
	WEnd
EndFunc   ;==>kill
Func MAPRELOAD()
	ControlSend("Vindictus", "", "", "{LEFT}") ;reload
	Sleep(10000)
	$i = $i + 1
	If $show Then ToolTip("Runs Completed: " & $i & @crlF & "Levels Grown: " & $b, 0, 0, "Progress")
	Call("level")
EndFunc   ;==>MAPRELOAD
Func level()
	ControlSend("Vindictus", "", "", "{NUMPAD1}") ;x1 time
	Sleep(1000)
	$search = PixelSearch(1060, 525, 1330, 670, 0xCE1436)
	If $search = True Then
		$b = $b + 1
		If $show Then ToolTip("Runs Completed: " & $i & @crlF & "Levels Grown: " & $b, 0, 0, "Progress")
	EndIf
	Call("kill")
EndFunc   ;==>level
Func Runs()
	$show = Not $show
	If ($show) Then
		ToolTip("Runs Completed: " & 0 + $i & @crlF & "Levels Grown: " & 0 + $b, 0, 0, "Progress")
	Else
		ToolTip("")
	EndIf
EndFunc   ;==>Runs
Func pause()
	$pause = Not $pause
	While $pause
		ToolTip('Script is PAUSED, press ""F3"" to UNPAUSE', 0, 0)
		Sleep(1000)
	WEnd
	ToolTip("")
EndFunc   ;==>pause
Func Show()
	WinSetState("Vindictus", "", @SW_SHOW)
EndFunc   ;==>Show
Func Hide()
	WinSetState("Vindictus", "", @SW_HIDE)
EndFunc   ;==>Hide
Func STOP()
	Exit
EndFunc   ;==>STOP
Func inject()
	If $concheck = True Then
		Call("binds")
	Else
		MsgBox(0, "", "Please make sure PubConsole is open.")
	EndIf
EndFunc   ;==>inject
Func binds()
	ControlSend("PubConsole", "", "", 'bind "KP_INS" "god;cc_system_message GOD"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "KP_DEL" "ohk;cc_system_message OHK"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "KP_LEFTARROW" "cc_set_sub_weapon javelin_lvl2 999;cc_system_message Fine-Javelins"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "KP_END" "host_timescale 1;cc_system_message x1-Time"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "KP_HOME" "plr_play_overlay_sequence paladin_transformation_begin_1;cc_system_message Paladin1"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "RIGHTARROW" "changemap_to_next_random_sector;cc_system_message Next-Sector-Loaded"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "LEFTARROW" "changemap_to_current_random_sector;cc_system_message Sector-Reloaded"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "," "cc_change_figure_height 0.1;cc_system_message Tiny-MODE"')
	ControlSend("PubConsole", "", "", "{ENTER}")
	ControlSend("PubConsole", "", "", 'bind "KP_PGDN" "host_timescale 3;cc_system_message x3-Time"')
	ControlSend("PubConsole", "", "", "{ENTER}")
EndFunc   ;==>binds
#1 · edited 14y ago · 14y ago
HA
hasony1
Sorry....But, how do I use this?
#2 · 14y ago
KO
kodaa1204
Read Dracconus (Forgive me if I don't spell that correctly) But read his instructions on compiling a script with Au3 in this thread. My question though is, neither bots will start now. The normal or this one. it just sits in the first room.
#3 · edited 14y ago · 14y ago
[PS]W3bster
[PS]W3bster
Thanks for that small bot
#4 · 14y ago
XA
xabbis
try turning UAC off, to get to it go to. Control panel>User accounts and family safety>User accounts>change user account control settings. then put it on "never notify"
#5 · 14y ago
MA
masterasia
I've got a quick question, isn't Labyrinth limited to 3 runs a day?

EDIT:
WOW i've lurked for a long time.
#6 · 14y ago
XA
xabbis
Quote Originally Posted by masterasia View Post
I've got a quick question, isn't Labyrinth limited to 3 runs a day?

EDIT:
WOW i've lurked for a long time.
This keeps reloading the sector so it keeps killing them over and over
#7 · 14y ago
Noomy
Noomy
Hmm. what when I have VLSE console with PubConsole binds? I put F1 and bot dont wanna work for me :/ (PubConsole EU not working
#8 · 14y ago
theking1111
theking1111
How long does it take to level from 22 to 69 with this?
#9 · 14y ago
XA
xabbis
a long ass time
#10 · 14y ago
Posts 1–10 of 10 · Page 1 of 1

Post a Reply

Similar Threads

  • Labyrinth Leveling Bot (Updated)By xabbis in Vindictus Hacks & Cheats
    5Last post 14y ago
  • Labyrinth Leveling BotBy dumblet in Vindictus Hacks & Cheats
    136Last post 15y ago
  • Improved Labyrinth Leveling BotBy Dracconus in Vindictus Hacks & Cheats
    299Last post 14y ago
  • Are there Auto Level BotsBy shev22 in WarRock Discussions
    6Last post 15y ago
  • "HOW TO USE LEVEL BOT+GP"??? NEED HELPBy zekeria in Combat Arms Hacks & Cheats
    1Last post 17y ago

Tags for this Thread

None