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 › Trove Hacks & Cheats › Adventure Bot [Update]

LightbulbAdventure Bot [Update]

Posts 1–15 of 27 · Page 1 of 2
limacezzz
limacezzz
Adventure Bot [Update]
Adventure Bot

Disclaimer :
This bot is here only to show everyone that it's possible.
If you want a good adventure bot, you can make your own just editing my code.

Info :
The first update of my adventure bot !
You don't need the star icon anymore.
To make it work you have to press "i" and disable everything except "Dungeons".
Then you have to adapt values on these lines to your screen :
Code:
PixelGetColor, OutputVar, 1565, 120 <- Position of the pixel to scan
if (OutputVar = "0x8B8B8B") <- Color to find
Explanations :
This script will make you respawn.
Respawn will reset the X value of the cursor's position.
The script will change the Y value of the cursor's position to look at the bottom.
Then it sends keys to move to the rally blade and use it.
Once teleported, it checks if you are in a dungeon by searching for it's logo on the top right of the screen.
If the logo is found, the script checks every 5s if this logo is still here, and this, with a time out of 90s.
If the dungeon is cleared before those 90s, the script will restart (/respawn...).

To-do :
Find the dungeon pointer (that shows up the dungeon logo).
Improve delays between keys sending.
Add calibration for every resolution.
Make it work in every world.
Detect multiple dungeons.
Enable multi-acc.

I'm opened to all of your ideas and suggestions


AHK Script :
Code:
	;get window coordinates and sizes
	WinGetPos, null, null, Window_Width, Window_Height, Trove
	Loop {	
		;set foreground
		WinActivate, Trove
		
		;respawn to the rally blade and use it
		BlockInput, on
		Send {enter}/respawn{enter}
		BlockInput, off
		Sleep 1000
		Send {e}
		Sleep 2000
		BlockInput, on
		MouseGetPos, Cur_Pos_X, Cur_Pos_Y
		MouseMove,Cur_Pos_X , Window_Height-50
		Send {w}
		Send {z down}
		Send {q down}
		Sleep 200
		Send {z up}
		Sleep 150
		Send {q up}
		Sleep 1000
		Send {e}
		BlockInput, off
		Sleep 3000

		TimeOut = 0
		LastTime = 0
		Loop {
			;detect a dungeon
			PixelGetColor, OutputVar, 1565, 120
			if (OutputVar = "0x8B8B8B")
			{
				LastTime = 1
				if (TimeOut = 18)
				{
					;break after 90s in uncleared dungeon
					break
				}
				TimeOut++
				
				;fake human moves 
				MouseGetPos, Cur_Pos_X, Cur_Pos_Y
				MouseMove,Cur_Pos_X , Cur_Pos_Y-100
				Send {&}
				Send {&}
				Send {&}
				Send {é}
				Send {é}
				Send {LButton down}
				
				Sleep 5000
				
				Send {LButton up}
				Send {RButton}
				Send {RButton}
			}
			else
			{
				if (LastTime = 1)
				{
					;wait for the chest to be destroyed
					Sleep 6000
				}
				break
			}
		}
	}

Numpad0::ExitApp
#1 · edited 6y ago · 8y ago
ZB
zBoltZz
is there any way i can contact you like skype ******* or something?
#2 · 8y ago
limacezzz
limacezzz
Quote Originally Posted by zBoltZz View Post
is there any way i can contact you like skype ******* or something?
pm me here on mpgh if you want.
#3 · 8y ago
JA
JakeFeeds
So I cant figure how to do this, Probably because I am dumb.

So I have the program and it works. but it doesnt run to the rally blade so I cant get it to start. The /respawn works perfectly tho. Thanks for the help!
#4 · 8y ago
limacezzz
limacezzz
Quote Originally Posted by JakeFeeds View Post
So I cant figure how to do this, Probably because I am dumb.

So I have the program and it works. but it doesnt run to the rally blade so I cant get it to start. The /respawn works perfectly tho. Thanks for the help!
You might change some delays to make it work in these lines :
Send {w}
Send {z down}
Send {q down}
Sleep 200
Send {z up}
Sleep 150
Send {q up}
Sleep 1000
Send {e}
#5 · 8y ago
JA
JakeFeeds
Quote Originally Posted by limacezzz View Post
You might change some delays to make it work in these lines :
Send {w}
Send {z down}
Send {q down}
Sleep 200
Send {z up}
Sleep 150
Send {q up}
Sleep 1000
Send {e}
Perfect timing that I logged on MPGH. Would you happen to have ******* maybe we could message eachother?

Ill try messing with delays


EDIT: It seems to just be activating a flask. I changed the sleep times to 1000 to test
#6 · edited 8y ago · 8y ago
mpmoi
mpmoi
Quote Originally Posted by JakeFeeds View Post
Perfect timing that I logged on MPGH. Would you happen to have ******* maybe we could message eachother?

Ill try messing with delays


EDIT: It seems to just be activating a flask. I changed the sleep times to 1000 to test
Swich QWERTY/AZERTY
#7 · 8y ago
JA
JakeFeeds
Switch my hotkeys on trove? Im a bit confused. like changing my movement?
#8 · 8y ago
mpmoi
mpmoi
Quote Originally Posted by JakeFeeds View Post
Switch my hotkeys on trove? Im a bit confused. like changing my movement?
Your keyboard layout ^^
Or maybe ou changed from the default moving keys (WASD) ?
#9 · 8y ago
JA
JakeFeeds
I actually am dumb I feel like. Everything is default and i have a english keyboard. ik that the creator is using a french keyboard. so Idk if that messes me up. but Thanks if you can help out
#10 · 8y ago
PO
Pokao
Salut limacezzz je sais que tu es FR, peux-tu m'ajouté sur skype s'il te plait, je n'arrive pas à le faire fonctionner
#11 · 8y ago
CO
computer angel
Can someone explain how I can actually use this bot? I am kinda noob, like what do I do to make the bot actually work.
#12 · 8y ago
mpmoi
mpmoi
Quote Originally Posted by JakeFeeds View Post
I actually am dumb I feel like. Everything is default and i have a english keyboard. ik that the creator is using a french keyboard. so Idk if that messes me up. but Thanks if you can help out
Install a french keyboard layout or change the keys of the script
#13 · 8y ago
JA
JakeFeeds
So looking to change the script. Im looking at the send q W etc. and Im a bit confused. Since z would be mount and i doubt he swaps into his mount. im braindead
#14 · 8y ago
limacezzz
limacezzz
Send {w} <- equip mount
Send {z down} <- press [GO FORWARD]
Send {q down} <- press [GO LEFT]
Sleep 200
Send {z up} <- release [GO FORWARD]
Sleep 150
Send {q up} <- release [GO LEFT]
Sleep 1000
Send {e} <- use rally blade

Hope this will help
#15 · 8y ago
Posts 1–15 of 27 · Page 1 of 2

Post a Reply

Similar Threads

  • {UPDATE}Auto Bunny Hop Bot Updated (voice announce)By Cirion66 in CrossFire Spammers, Injectors and Multi Tools
    26Last post 15y ago
  • Labyrinth Leveling Bot (Updated)By xabbis in Vindictus Hacks & Cheats
    5Last post 14y ago
  • le bot updates 3.3By joshmary in Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    10Last post 14y ago
  • RSBot Client [With PK Bot][Update Thread Daily]By ж‡ Haxεr4€vεr ‡ж in Runescape Hacks / Bots
    9Last post 15y ago
  • le bot updates 3.5By joshmary in Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    24Last post 14y ago

Tags for this Thread

None