Thread: Adventure Bot

Results 1 to 15 of 15
  1. #1
    limacezzz's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    336
    My Mood
    Inspired

    Lightbulb Adventure Bot

    Adventure Bot

    Info :
    You can try here my first attempt at creating an adventure bot.
    It's still bugged but i'm in search of ideas to improve it.
    To make it work "proper" you have to put the "Dungeon_Star.png" file in the same folder as the script.
    Run the script from anywhere inside any prime world you want to farm in.
    Don't move your mouse during farm.

    Explanations :
    If you don't want to download the image file, you will have to extract it from a swf in a packed game file,
    you can find it here : Trove\Live\extracted\ui\questtracker.swf after using the extract batch (devtool_unpack_client.bat).
    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 0.5s if this logo is still here.
    Two cases can occur now :
    1. The dungeon is cleared, there is no more dungeon logo => return to start of the script (respawn and re tp)
    2. 20s have passed and the dungeon is still uncleared => return to start of the script (respawn and re tp)

    To-do :
    Change the way the script detect if you are in dungeon (image detection is still bugged).
    Find the dungeon pointer (that shows up the dungeon logo).
    Improve delays between keys sending.

    I'm opened to all of your ideas and suggestions


    AHK Script :
    Code:
    IfNotExist Dungeon_Star.png 
    {
    	MsgBox Error: Put Dungeon_Star.png in the same folder as this script.
    }else{
    	WinGetPos, null, null, Window_Width, Window_Height, Trove
    	TopLeftX:=(Window_Width/1.3)
    	BotRightY:=(Window_Height/2.5)
    	Loop {	
    		WinActivate, Trove
    		Send {enter}/respawn{enter}
    		Sleep 1000
    		Send {e}
    		Sleep 500
    		MouseGetPos, Cur_Pos_X, Cur_Pos_Y
    		MouseMove,Cur_Pos_X , Window_Height
    		Send {w}
    		Send {z down}
    		Send {q down}
    		Sleep 200
    		Send {z up}
    		Sleep 150
    		Send {q up}
    		Sleep 2000
    		Send {e}
    		Sleep 1000
    		TimeOut = 0
    		Loop {
    			ImageSearch, Found_X,Found_Y, TopLeftX,0, Window_Width,BotRightY, *150 *Trans000000 Dungeon_Star.png
    			if ErrorLevel = 0
    			{
    				MouseMove,Found_X , Found_Y
    				if (TimeOut = 40) 
    				{
    					break
    				}
    				TimeOut++
    				Sleep 500
    			}
    			else if ErrorLevel = 1	
    			{
    				break
    			}
    			else if ErrorLevel = 2	
    			{
    				break
    			}
    		}
    	}
    }
    Esc::ExitApp
    Attached Thumbnails Attached Thumbnails
    Dungeon_Star.png  

    Last edited by T-800; 03-05-2020 at 10:10 AM.

  2. The Following 3 Users Say Thank You to limacezzz For This Useful Post:

    boss334 (11-15-2017),HUSTRIK (11-12-2017),khewweifeng2 (12-17-2017)

  3. #2
    brahina's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    seems like my charachter isnt going to the rally? D:

  4. #3
    limacezzz's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    336
    My Mood
    Inspired
    Yea it's still bugged tho, it depends on you pc specs and many other things, that's why there is only one adventure bot on this site...

  5. #4
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    Quote Originally Posted by limacezzz View Post
    Yea it's still bugged tho, it depends on you pc specs and many other things, that's why there is only one adventure bot on this site...
    Might upgrade it
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  6. #5
    limacezzz's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    336
    My Mood
    Inspired
    If you help me finding some pointers, maybe i could make something better

  7. #6
    davido999's Avatar
    Join Date
    Nov 2015
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    0
    can minimize window ? or run few accounts same time?

  8. #7
    MrBuschMann's Avatar
    Join Date
    Mar 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    my character doesnt move after respawning. it will do things like taking pots when the key is used in the script but whatever i change i wont move.(camera does move)
    pls upgrade this bot. it would be realy helpful

    Edit: ok i managed to make myself move but i dont get why you use Z and Q in your script
    Last edited by MrBuschMann; 12-03-2017 at 11:20 AM.

  9. #8
    W$TWy4gasrgrgh3##$%3's Avatar
    Join Date
    Jan 2014
    Gender
    male
    Posts
    259
    Reputation
    44
    Thanks
    75
    Thanks for releasing

  10. #9
    poshunman's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Location
    The US of A
    Posts
    17
    Reputation
    10
    Thanks
    1
    I can't seem to get it working, rip

  11. #10
    brahina's Avatar
    Join Date
    Feb 2014
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    so i was able to fix the script but is there way to become invisible to other players? because i dont want to get reported.

  12. #11
    HeyHomie_'s Avatar
    Join Date
    Jul 2017
    Gender
    male
    Posts
    22
    Reputation
    10
    Thanks
    5
    My Mood
    Yeehaw
    release the FIXED script?

  13. #12
    Intel-.'s Avatar
    Join Date
    Jan 2018
    Gender
    female
    Location
    15,757
    Posts
    95
    Reputation
    23
    Thanks
    25
    My Mood
    Shocked
    who tf plays trove

  14. #13
    limacezzz's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    336
    My Mood
    Inspired
    Quote Originally Posted by MrBuschMann View Post
    Edit: ok i managed to make myself move but i dont get why you use Z and Q in your script
    French keyboard basically...

  15. #14
    zBoltZz's Avatar
    Join Date
    Jun 2017
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    can somone help me get the file?? i have no idea how to get the batch extracting file or whatever it is called q.q

  16. #15
    limacezzz's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    62
    Reputation
    10
    Thanks
    336
    My Mood
    Inspired
    Quote Originally Posted by zBoltZz View Post
    can somone help me get the file?? i have no idea how to get the batch extracting file or whatever it is called q.q
    Create an ahk script with given code, but use the updated version : https://www.mpgh.net/forum/showthread.php?t=1343279

Similar Threads

  1. [Solved] Adventure Quest Worlds Grimskull Trolling rep bot (dmbot)
    By Roger Amstrong in forum Adventure Quest Worlds (AQW) Help
    Replies: 0
    Last Post: 07-04-2014, 10:53 PM
  2. [Request] Adventure Quest Worlds Linux Bot?
    By YddEOA in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 9
    Last Post: 08-11-2013, 01:42 PM
  3. [Release] tons of adventure quest worlds bots
    By joshmary in forum Adventure Quest Worlds (AQW) Hacks / Cheats / Trainers
    Replies: 9
    Last Post: 03-22-2013, 01:22 PM
  4. need hack for bots acclaim or mechquest or adventure quest
    By hobbit08 in forum General Hacking
    Replies: 2
    Last Post: 01-26-2012, 10:47 PM

Tags for this Thread