Page 1 of 5 123 ... LastLast
Results 1 to 15 of 66
  1. #1
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk

    Arrow MpPassiveFishingBot v1.5 : Auto-updating pointers

    Hey guys !

    This is a fishing bot for Trove ! It works well and is really useful if you want to fish a lot ! It supports multiple accounts ! It's purpose is to be a light and fast bot ! No hotkeys ! No setup needed !
    Requierments : AutoHotKey (last version I guess)

    How it works :
    Start it and press F on some water/lava/chocolate !
    You can start it on as many accounts as you need !
    If you want it to stop fishing just early reel the fishing rod ! (before a fish comes)
    To close the bot simply close the tray icon !

    Updating pointers
    This version should self-update pointers, however I will have to find them before so it could take some time (less than 2-3h after a patch usually)
    You can still find them by yourself or heck the forums : I guess Nippy's Fishbot pointers should work. Edit the config file in the same directory as the .ahk file. Then restart the script.


    Well providing screenshots would be useless, let me know if you think about something to improve.

    How you get this ?
    Just grab the source code and paste it in a .ahk file and start it!
    You can also download it directly. (wait for @Psychotic @Joe @Dexter approval)

    /!\ This won't work if you renamed Trove's window (Some account launchers are doing that, care)

     

    CHANGE ***** with drop box on :
    Code:
    WebRequest.Open("GET", "https://dl.*******userconten*****m/u/52517919/MpFishingBotPointer.txt")
    SOURCE CODE :
    Code:
    #SingleInstance force
    #Persistent
    
    SplashTextOn, 500,25, mpPassiveFishingBot, Initializing and updating pointers, please wait...
    
    SetWorkingDir %A_ScriptDir%
    Reeled := Object()
    WaitRelauch := Object()
    
    global Ver:=1.5
    global _Motd:=""
    global _Version:=1
    global _Pointer:="0x00BAB82C"
    global _wOffset:="0x8+0xb4+0x28+0x22c"
    global _lOffset:="0x8+0xb4+0x28+0x6e8"
    global _cOffset:="0x8+0xb4+0x28+0x488"
    global iniFile := A_ScriptDir . "/config.ini"
    
    if (FileExist(iniFile)){
    	IniRead, _Version, %iniFile%, Global, _Version
    	IniRead, _Pointer, %iniFile%, Global, _Pointer
    	IniRead, _wOffset, %iniFile%, Global, _wOffset
    	IniRead, _lOffset, %iniFile%, Global, _lOffset
    	IniRead, _cOffset, %iniFile%, Global, _cOffset
    	IniRead, _Motd, %iniFile%, Global, _Motd
    }
    
    WebRequest := ComObjCreate("WinHttp.WinHttpRequest.5.1")
    WebRequest.Open("GET", "https://dl.*******userconten*****m/u/52517919/MpFishingBotPointer.txt")
    WebRequest.Send()
    Contents := StrSplit(WebRequest.ResponseText, "$")
    if (Contents[1] > _Version){
    	global _Version:=Contents[1]
    	global _Pointer:=Contents[2]
    	global _wOffset:=Contents[3]
    	global _lOffset:=Contents[4]
    	global _cOffset:=Contents[5]
    	TrayTip ,mpPassiveFishingBot, % "Values updated to :`nPointer : " _Pointer "`nWater offset : " _wOffset "`nLava offset : "_lOffset "`nChocolate offset : " _cOffset
    	Sleep, 10
    	}
    
    global _newMotd:=Contents[8]
    if (_Motd != _newMotd){
    	TrayTip ,mpPassiveFishingBot, %_newMotd%
    	Sleep, 10
    	}
    
    IniWrite, %_Version%, %iniFile%, Global, _Version
    IniWrite, %_Pointer%, %iniFile%, Global, _Pointer
    IniWrite, %_wOffset%, %iniFile%, Global, _wOffset
    IniWrite, %_lOffset%, %iniFile%, Global, _lOffset
    IniWrite, %_cOffset%, %iniFile%, Global, _cOffset
    IniWrite, %_newMotd%, %iniFile%, Global, _Motd
    
    SetTimer, Scan, 999
    SetTimer, Relaunch, 1999
    
    SplashTextOff
    
    if (Contents[6] > Ver){
    	num := Contents[7]
    	url = https://www.mpgh.net/forum/showthread.php?t=%num%
    	MsgBox, 4,, New version available, go to MPGH topic ? (press Yes or No)
    	IfMsgBox Yes
    		Run %url%
    	}
    
    TrayTip ,mpPassiveFishingBot, Bot started ! Press "f" on water/lava/chocolate !
    return
    
    Scan:
    	WinGet, l, list, Trove
    	Loop %l%
    	{
    		d := l%a_index%
    		WinGet, pid, PID, ahk_id %d%
    		WinGet, Handle, ID, ahk_pid %pid%
    		Base := getProcessBaseAddress(Handle)
    		wAddress := GetAddress(pid, Base, _Pointer, _wOffset)
    		wValue := ReadMemory(wAddress, pid)
    		lAddress := GetAddress(pid, Base, _Pointer, _lOffset)
    		lValue := ReadMemory(lAddress, pid)
    		cAddress := GetAddress(pid, Base, _Pointer, _cOffset)
    		cValue := ReadMemory(cAddress, pid)
    		if (cValue=1||lValue=1||wValue=1){
    			found := 0
    			for i, p in Reeled{
    				if (p=pid)
    					found := 1
    				}
    			for i, p in WaitRelauch{
    				if (p=pid)
    					found := 1
    				}
    			if (found = 0){
    				ControlSend, , {f down}, ahk_pid %pid%
    				Sleep, 90
    				ControlSend, , {f up}, ahk_pid %pid%
    				Reeled.Insert(pid)
    				}
    			}
    	}
    	return
    
    Relaunch:
    	WaitRelauch := Reeled
    	Reeled := Object()
    	Sleep, 2000
    	for i, p in WaitRelauch{
    		ControlSend, , {f down}, ahk_pid %p%
    		Sleep, 90
    		ControlSend, , {f up}, ahk_pid %p%
    		}
    	return
    
    RemoveToolTip:
    	SetTimer, RemoveToolTip, Off
    	ToolTip
    	return
    
    getProcessBaseAddress(Handle){
    		Return DllCall( A_PtrSize = 4
    		? "GetWindowLong"
    : "GetWindowLongPtr"
    	        , "Ptr", Handle
    	        , "Int", -6
    	        , "Int64")
    	}
    
    GetAddress(PID, Base, Address, Offset){
    	pointerBase := base + Address
    	y := ReadMemory(pointerBase,PID)	
    	OffsetSplit := StrSplit(Offset, "+")
    	OffsetCount := OffsetSplit.MaxIndex()
    	Loop, %OffsetCount%{
    		if (a_index = OffsetCount) {
    			Address := (y + OffsetSplit[a_index])
    	  	}Else
    			if(a_index = 1) {
    				y := ReadMemory(y + OffsetSplit[a_index],PID)
    			}Else{
    				y := ReadMemory(y + OffsetSplit[a_index],PID)
    				}
    		}
    	Return Address
    	}
    
    ReadMemory(MADDRESS, pid){
    	VarSetCapacity(MVALUE,4,0)
    	ProcessHandle := DllCall("OpenProcess", "Int", 24, "Char", 0, "UInt", pid, "UInt")
    	DllCall("ReadProcessMemory", "UInt", ProcessHandle, "Ptr", MADDRESS, "Ptr", &MVALUE, "Uint",4)
    	Loop 4
    			result += *(&MVALUE + A_Index-1) << 8*(A_Index-1)
    	Return, result
    	}


     

    Code:
    V1.0 (2670b):
    Initial release
    
    v1.1 (2781b):
    Timer correction
    Hard optimisation
    
    v1.2 (3659b):
    Now automatically updating pointers !
    Few issues corrected
    
    v1.3 (3649b):
    Splash text
    Tray messages added (no longer messages box)
    Few optimisations
    
    v1.4 (3830b):
    Edited timer setup
    Less hurdles with bot stuck (reeling while fishing)
    
    v1.5 (4231b):
    Check for updates and open related thread
    MOTD added (for changelogs)
    Edited timer setup
    Less hurdles with bot stuck (reeling while fishing)


    Special thanks :
    @reppin Who let me make a bot and use part of it's memory-reading code ! Check out his awesome fishing bot !

    Disclaimer :
    I will not add any bootdrop/destroy and loot-collect thing any soon ! This is a bot made for 5-min botting session when you go eating or to the toilets mid-game.
    I will not be responsible of any ban you get by using this !

    There are the virus scans :
    https://virusscan.jotti.org/fr-FR/fi...job/nbsi2t8uok
    https://www.virustotal.com/en/file/a...is/1467065915/

    NOTE : Old thread can be closed
    <b>Downloadable Files</b> Downloadable Files
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  2. The Following 81 Users Say Thank You to mpmoi For This Useful Post:

    0624ljh (07-26-2016),2cocksplease (07-15-2016),aarrth8 (06-29-2016),andresgan (07-21-2016),Anetsy (07-20-2016),apecgod123 (07-10-2016),astharoth890 (07-13-2016),Azik_LV (07-09-2016),aznprobs123 (07-21-2016),BanzayGrey (07-11-2016),baubau2010 (07-04-2016),BlastFwD (06-28-2016),blugthek (07-15-2016),bobshoter (07-13-2016),brooden (07-21-2016),Cameron9456 (07-12-2016),Captain_Plasma (06-28-2016),Chidzuru (07-20-2016),CobraIndustries (07-01-2016),cosmosi (07-19-2016),D1wid15 (07-06-2016),DamerLight (07-07-2016),DownToMusic (07-06-2016),DWK (07-31-2016),EddyBer (07-11-2016),galaxyboy2000 (07-08-2016),gameditkon (07-20-2016),GustavoM20 (07-02-2016),H2Dunk (06-29-2016),hassanhax (08-18-2016),hogake6th (07-06-2016),I34C0N (07-13-2016),iloveblizzard (06-30-2016),Ilsonakau (06-29-2016),kanchuiii (07-20-2016),Kekson (07-10-2016),kubakakauko (07-12-2016),leos222 (06-27-2016),link_354 (07-08-2016),lionorer (07-21-2016),lolcird (07-15-2016),louistawan9 (07-22-2016),Madhatter08 (07-10-2016),Mashirolol (07-11-2016),MatteBlack (07-04-2016),miudi12732 (07-14-2016),MrFrostie (06-29-2016),Neiron (07-20-2016),noobcoco (07-19-2016),pexilo (07-21-2016),Philmer (07-14-2016),ping99059 (07-10-2016),propy200 (06-28-2016),Rainshadowz (07-21-2016),robertandy11 (07-22-2016),Rpg_rip (06-28-2016),RuanVDU (07-01-2016),russianimport (07-16-2016),sdgdsgdssdggg (06-28-2016),SebastienPlays (07-08-2016),Sherva (07-09-2016),soap1121 (07-09-2016),Spid12 (06-28-2016),suckmydick12 (07-26-2016),Takarm (07-09-2016),Tetrator (07-11-2016),Thecrazybrit (07-16-2016),TheRandom322 (07-18-2016),TheWitcher_oJ (07-01-2016),traskis914 (07-13-2016),unknownelfen (06-27-2016),verybadping (07-03-2016),Xen0T0xic (07-09-2016),xxxasfgxxx (06-29-2016),ynfynytyx (07-08-2016),yobson (07-16-2016),ypzb001 (07-02-2016),Yushi12 (07-09-2016),zminh1 (07-06-2016),znsvs (07-20-2016),Zyazoh (07-07-2016)

  3. #2
    Psychotic's Avatar
    Join Date
    May 2012
    Gender
    male
    Posts
    13,825
    Reputation
    4234
    Thanks
    6,055
    Approved!

    Closed and marked your old thread accordingly. Post back results!






    Super User since 02.02.2020
    Global Moderator since 09.23.2017
    Moderator since 09.01.2016
    Minion+ since 07.22.2016

    Marketplace Minion since 06.09.2016
    Trove Minion since 06.06.2016
    Middleman since 04.21.2016
    Social Engineering Minion since 02.03.2016
    News FO Freelancer From 11.08.2015 to 07.23.2016
    News FO Head Editor From 08.23.2015 to 11.08.2015
    News FO Head Editor From 07.19.2012 to 08.11.2014
    MPGH News and News FO Founder
    Programming Minion From Unknown to 04.23.2013
    Minecraft Minion From 09.19.2012 to 04.23.2013
    Member since 05.13.2012



  4. The Following 3 Users Say Thank You to Psychotic For This Useful Post:

    Danny (06-28-2016),Dexter (06-27-2016),mpmoi (06-28-2016)

  5. #3
    yobson's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    England
    Posts
    434
    Reputation
    23
    Thanks
    1,151
    My Mood
    Yeehaw
    did you forget to remove "NOTE : Old thread can be closed" or is this old already?
    Donator since February 18th 2014

  6. #4
    W23rd's Avatar
    Join Date
    Oct 2010
    Gender
    female
    Posts
    696
    Reputation
    115
    Thanks
    271
    OP, please let us know if this is old

  7. #5
    yobson's Avatar
    Join Date
    Oct 2012
    Gender
    male
    Location
    England
    Posts
    434
    Reputation
    23
    Thanks
    1,151
    My Mood
    Yeehaw
    Quote Originally Posted by 408 View Post
    OP, please let us know if this is old
    im using it now, seems to work fine.
    Donator since February 18th 2014

  8. #6
    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 King Brad View Post
    did you forget to remove "NOTE : Old thread can be closed" or is this old already?
    No. It is in order to tell the mods that this is the new version and that the topic for the previous one is now useless

    - - - Updated - - -

    Quote Originally Posted by 408 View Post
    OP, please let us know if this is old
    It is working

  9. #7
    sdgdsgdssdggg's Avatar
    Join Date
    Jun 2016
    Gender
    female
    Posts
    13
    Reputation
    10
    Thanks
    1
    so..... new patch comming guys
    I hope for your hack skill

  10. #8
    ~RukaaSsu's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    1
    My Mood
    Angelic
    Quote Originally Posted by King Brad View Post
    did you forget to remove "NOTE : Old thread can be closed" or is this old already?

    Are you really from England?

  11. #9
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    Pointer updated

  12. #10
    Drama's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    1,611
    Reputation
    223
    Thanks
    418
    My Mood
    Angelic
    Thanks! this helps alot.
    Wanna advertise your shop here? PM me!

    LIKE Grand Theft Auto (GTA)? Wanna get help? enjoy the game? JOIN the official GTA group page! (CLICK GREEN BOX BELOW)


    #1 Dumbasses on MPGH.
    Knives don`t even kill a fraction compared to guns so don`t give me the knife crap.
    Quote Originally Posted by Dab1996426 View Post
    The Only Way You Can Have PC Over Console Is If You Can Build A PC With Better Hardware Than The Console At The Same Price, Which You Can't.
    Quote Originally Posted by Dab1996426 View Post
    "I Mean Sure Yeah It Makes Sense, But It's No Damn Lifesaving Medal", Makes Sense That You'd Have A Medal For Being Justifiably Injured, But It's Not The Same As Earning A Medal That Involves Saving Someones Life
    Quote Originally Posted by Dab1996426 View Post
    "Once Again, Correcting Someones Improper Grammar Is Not An Attack On Their Person."



  13. #11
    HKkenny's Avatar
    Join Date
    Sep 2015
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    2
    0x00AE9F04 not work

  14. #12
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    Just noticed they pushed a new update, looking for pointer rn

    - - - Updated - - -

    Pointer updated to 0x00AEEB44
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  15. #13
    Platinum's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Dave's bathroom
    Posts
    1,768
    Reputation
    79
    Thanks
    496
    My Mood
    Lurking
    Quote Originally Posted by mpmoi View Post
    Just noticed they pushed a new update, looking for pointer rn

    - - - Updated - - -

    Pointer updated to 0x00AEEB44
    There is a new update every Tuesday.

  16. #14
    Do or do not. There is no try. - Yoda
    Former Staff
    Premium Member
    Vader's Avatar
    Join Date
    Jun 2010
    Gender
    male
    Location
    Far Far Away
    Posts
    1,871
    Reputation
    821
    Thanks
    793
    My Mood
    Twisted
    Thanks for the share

    "My life spans millennia. Legions have risen to test me. […] My ascendance is inevitable. A day, a year, millennium-it matters not. I hold the patience of stone and the will of stars. Your striving is insignificant. Let your death be the same."
    -The Sith Emperor

    Member - 06.05.2010
    Premium Member - 08.12.2015
    News Force - 24.10.2016 / 26.03.2018
    Publicist - 06.12.2017 / XX.XX.2018
    Battlefield Minion - 23.12.2017
    GTA Minion - 23.01.2018


  17. #15
    Platinum's Avatar
    Join Date
    Apr 2015
    Gender
    male
    Location
    Dave's bathroom
    Posts
    1,768
    Reputation
    79
    Thanks
    496
    My Mood
    Lurking
    Quote Originally Posted by Vader View Post
    Thanks for the share
    That's not Vader? That Kylo Ren.

Page 1 of 5 123 ... LastLast

Similar Threads

  1. [Outdated] MpPassiveFishingBot v1.8 : Auto-updating pointer
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 32
    Last Post: 08-03-2016, 01:20 PM
  2. [Outdated] MpPassiveFishingBot v1.7 : Auto-updating pointer
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 3
    Last Post: 08-01-2016, 02:35 PM
  3. [Outdated] MpPassiveFishingBot v1.6 : Auto-updating pointer
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 76
    Last Post: 08-01-2016, 11:37 AM
  4. [Outdated] MpPassiveFishingBot v1.4 : Auto-updating pointers
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 18
    Last Post: 06-27-2016, 04:31 PM
  5. [Outdated] MpPassiveFishingBot v1.3 : Auto-updating pointers
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 8
    Last Post: 06-18-2016, 11:53 PM