Page 1 of 5 123 ... LastLast
Results 1 to 15 of 68
  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 v2.0 : Auto-updating pointer. Now on PTS

    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 :
    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)
    Start it (Tutorial here : https://www.mpgh.net/forum/showthread.php?t=1150041)
    You can check PTS if you want to fish on it
    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 check 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.
    Here is a tutorial for finding pointers : https://www.mpgh.net/forum/showthread.php?t=1150085

    /!\ This won't work if you renamed Trove's window (Some account launchers are doing that, care)
    /!\ People seems to have hurdles on non-english versions
    /!\ Your fishing hotkey must be 'F'

     

    Code:
    #SingleInstance force
    #Persistent
    
    SplashTextOn, 500,25, mpPassiveFishingBot, Initializing and updating pointers, please wait...
    
    SetWorkingDir %A_ScriptDir%
    Reeled := Object()
    WaitRelauch := Object()
    
    global Ver:=2.0
    global _Motd:=""
    global _Version:=1
    global _PTSVersion:=1
    global _Pointer:="0x00BAB82C"
    global _PTSPointer:="0x00BAB82C"
    global _wOffset:="0x8+0xb4+0x28+0x22c"
    global _lOffset:="0x8+0xb4+0x28+0x6e8"
    global _cOffset:="0x8+0xb4+0x28+0x488"
    global _PTSwOffset:="0x8+0xb4+0x28+0x22c"
    global _PTSlOffset:="0x8+0xb4+0x28+0x6e8"
    global _PTScOffset:="0x8+0xb4+0x28+0x488"
    global iniFile := A_ScriptDir . "/config.ini"
    global rld := 0
    
    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, _PTSVersion, %iniFile%, Global, _PTSVersion
    	IniRead, _PTSPointer, %iniFile%, Global, _PTSPointer
    	IniRead, _PTSwOffset, %iniFile%, Global, _PTSwOffset
    	IniRead, _PTSlOffset, %iniFile%, Global, _PTSlOffset
    	IniRead, _PTScOffset, %iniFile%, Global, _PTScOffset
    	IniRead, _Motd, %iniFile%, Global, _Motd
    }
    url := "https://dl.dropb" + "oxuserconten*****m/u/52517919/MpFishingBotPointer.txt"
    WebRequest := ComObjCreate("WinHttp.WinHttpRequest.5.1")
    WebRequest.Open("GET", url)
    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
    	}
    
    if (Contents[9] > _PTSVersion){
    	global _PTSVersion:=Contents[9]
    	global _PTSPointer:=Contents[10]
    	global _PTSwOffset:=Contents[11]
    	global _PTSlOffset:=Contents[12]
    	global _PTScOffset:=Contents[13]
    	TrayTip ,mpPassiveFishingBot, % "PTS Values updated to :`nPointer : " _PTSPointer "`nWater offset : " _PTSwOffset "`nLava offset : "_PTSlOffset "`nChocolate offset : " _PTScOffset
    	Sleep, 10
    	}
    
    global _newMotd:=Contents[8]
    if (_Motd != _newMotd){
    	TrayTip ,mpPassiveFishingBot, %_newMotd%
    	Sleep, 10
    	}
    
    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%
    	}
    
    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, %_PTSVersion%, %iniFile%, Global, _PTSVersion
    IniWrite, %_PTSPointer%, %iniFile%, Global, _PTSPointer
    IniWrite, %_PTSwOffset%, %iniFile%, Global, _PTSwOffset
    IniWrite, %_PTSlOffset%, %iniFile%, Global, _PTSlOffset
    IniWrite, %_PTScOffset%, %iniFile%, Global, _PTScOffset
    IniWrite, %_newMotd%, %iniFile%, Global, _Motd
    
    Gui, 1:New
    Gui 1:-Resize -MinimizeBox
    Gui, 1:Add, Text,, Current version : %Ver%`n`nPointer : %_Pointer%`nWater offsets : %_wOffset%`nLava offset : %_lOffset%`nChocolate offset : %_cOffset%`n`nPTS Pointer : %_PTSPointer%`nPTS Water offsets : %_PTSwOffset%`nPTS Lava offset : %_PTSlOffset%`nPTS Chocolate offset : %_PTScOffset%
    Gui, 1:Add, Text, vAccounts w200
    Gui, 1:Add, Text, vReeled w200
    Gui, 1:Add, Checkbox, vTry, PTS
    Gui, 1:Add, Button, gDebug , &Debug
    
    Gui, 2:New
    Gui 2:-Resize -MinimizeBox
    Gui, 2:Add, ListView, w650, Window PID|Base Address|Water Adress|Water Value|Lava Adress|Lava Value|Chocolate Adress|Chocolate Value
    
    Gui, 1:Show,,mpPassiveFishingBot
    
    SetTimer, Scan, 999
    SetTimer, Relaunch, 1999
    SetTimer, UpdateGui, 250
    
    SplashTextOff
    
    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)
    		If PTS = 1
    		{
    			wAddress := GetAddress(pid, Base, _PTSPointer, _PTSwOffset)
    			lAddress := GetAddress(pid, Base, _PTSPointer, _PTSlOffset)
    			cAddress := GetAddress(pid, Base, _PTSPointer, _PTScOffset)
    		}else{
    			wAddress := GetAddress(pid, Base, _Pointer, _wOffset)
    			lAddress := GetAddress(pid, Base, _Pointer, _lOffset)
    			cAddress := GetAddress(pid, Base, _Pointer, _cOffset)
    		}
    		wValue := ReadMemory(wAddress, pid)
    		lValue := ReadMemory(lAddress, pid)
    		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%
    				rld ++
    				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
    
    UpdateGui:
    	C := 0
    	WinGet, l, list, Trove
    	Loop %l%
    		C ++
    	GuiControl, 1:, Accounts, Active accounts : %C%
    	GuiControl, 1:, Reeled, Fish reeled : %rld%
    	GuiControlGet, PTS,, Try
    	return
    
    GuiClose:
    	ExitApp
    
    Debug:
    	SetTimer, UpdateDebugGui, 250
    	Gui, 2:Show, , mpPassiveFishingBotDebug
    	return
    
    UpdateDebugGui:
    	Gui, 2:Default
    	LV_DELETE()
    	WinGet, l, list, Trove
    	Loop %l%
    	{
    		d := l%a_index%
    		WinGet, pid, PID, ahk_id %d%
    		WinGet, Handle, ID, ahk_pid %pid%
    		BaseAddress := getProcessBaseAddress(Handle)
    		If PTS = 1
    		{
    			wAddress := GetAddress(pid, BaseAddress, _PTSPointer, _PTSwOffset)
    			lAddress := GetAddress(pid, BaseAddress, _PTSPointer, _PTSlOffset)
    			cAddress := GetAddress(pid, BaseAddress, _PTSPointer, _PTScOffset)
    		}else{
    			wAddress := GetAddress(pid, BaseAddress, _Pointer, _wOffset)
    			lAddress := GetAddress(pid, BaseAddress, _Pointer, _lOffset)
    			cAddress := GetAddress(pid, BaseAddress, _Pointer, _cOffset)
    		}
    		wValue := ReadMemory(wAddress, pid)
    		lValue := ReadMemory(lAddress, pid)
    		cValue := ReadMemory(cAddress, pid)
    		BaseAddressHex := FHex(BaseAddress)
    		wAddressHex := FHex(wAddress)
    		lAddressHex := FHex(lAddress)
    		cAddressHex := FHex(cAddress)
    		LV_Add("", PID, BaseAddressHex, wAddressHex, wValue, lAddressHex, lValue, cAddressHex, cValue)
    	}
    	return
    
    2GuiClose:
    	SetTimer, UpdateDebugGui, Off
    	Gui, 2:Hide
    	return
    
    FHex( int, pad=0 ){
    	Static hx := "0123456789ABCDEF"
    	If !( 0 < int |= 0 )
    		Return !int ? "0x0" : "-" FHex( -int, pad )
    	s := 1 + Floor( Ln( int ) / Ln( 16 ) )
    	h := SubStr( "0x0000000000000000", 1, pad := pad < s ? s + 2 : pad < 16 ? pad + 2 : 18 )
    	u := A_IsUnicode = 1
    	Loop % s
    
    		NumPut( *( &hx + ( ( int & 15 ) << u ) ), h, pad - A_Index << u, "UChar" ), int >>= 4
    	Return h
    	}
    
    
    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)
    
    v1.6 (4697b):
    GUI Added
    Removed useless stuff
    Now counting found accounts and reeled fish
    
    v1.7 (6237b):
    Debug added
    
    v1.8 (6267b):
    Corrected a cross-GUI fix
    
    v1.9 (6266b):
    Fixed a closing bug
    
    v2.0 (8116b):
    Fixed a glitch on the base address on debug window
    Added a PTS support


    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://www.virustotal.com/en/file/c...is/1470346261/
    https://virusscan.jotti.org/fr-FR/fi...job/rsniu3yrrz


    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 98 Users Say Thank You to mpmoi For This Useful Post:

    AdmiralHamster (08-05-2016),ADWELWEL (08-13-2016),agfa121 (08-15-2016),andresgan (08-18-2016),apollo12 (08-09-2016),bayroxh (08-12-2016),ben120425 (08-17-2016),Blackefire (09-05-2016),caus11 (02-18-2017),Chidzuru (08-05-2016),cookiefishking (08-21-2016),D10mant (08-10-2016),D2R2 (08-21-2016),Daniel1270 (08-07-2016),darien6342 (08-06-2016),Davidlrp (08-06-2016),Deminto (08-13-2016),DennisXX (08-19-2016),Desmilion (08-10-2016),Disu9164 (08-14-2016),DocMarios (08-19-2016),duongduyphuc (08-12-2016),DWK (08-04-2016),EdwinCPH (08-05-2016),egedinnen (08-09-2016),Entos95 (08-18-2016),ericav1 (08-04-2016),ErManciuz (08-05-2016),fireblue35 (08-08-2016),Firegast (08-18-2016),FreshPixel (08-22-2016),GetOutofMe (08-21-2016),Haha2579 (09-10-2016),handon0 (08-05-2016),HecticGryDick (08-09-2016),horttow (08-23-2016),iDunSky (08-30-2016),iIAgentEricIi (08-04-2016),kalteseis123 (09-03-2016),Kapsyciak (08-06-2016),kekkikatti (08-06-2016),kingcash6414 (08-29-2016),KinqArthurTR (09-03-2016),kivrus (08-09-2016),laripagi22 (08-31-2016),link_354 (08-06-2016),lol07345 (08-04-2016),LoveTheEvil (08-23-2016),LuciusDevilsChild (08-14-2016),maximus2023 (08-20-2016),Melih543 (08-23-2016),miudi12732 (08-23-2016),mkaiya (08-06-2016),mohi222 (09-08-2016),MrKinGzer (08-05-2016),nakoboy (08-05-2016),nomesobrenome (08-14-2016),notyatsha (08-10-2016),Nudiexd (08-05-2016),OMGTECHLORD (08-09-2016),Palarmux (08-26-2016),peetck (08-31-2016),pexilo (08-07-2016),ph4nt0m_11 (09-02-2016),PikaDoesMC_YT (09-01-2016),pokerface_o1 (08-13-2016),procstar (09-01-2016),Psyh13 (08-05-2016),q792952733 (08-21-2016),qwe78501 (08-25-2016),Rasyonel (08-05-2016),robot178 (08-24-2016),RORO20002 (08-26-2016),ruben2005 (08-05-2016),ruritanian (08-04-2016),SilenceOne (08-18-2016),sisakapro (08-14-2016),skmmo (08-18-2016),Soii (08-14-2016),soren0308 (08-06-2016),spicycoconut18 (08-16-2016),Sukiyo (08-23-2016),taivsvinh (08-16-2016),tanlocct123 (08-05-2016),topspeedzx (08-05-2016),vardarling (08-08-2016),voltix (09-05-2016),Vyctor Hugo (08-19-2016),waiting6985 (08-19-2016),weabooze (08-22-2016),ynfynytyx (08-11-2016),zijoijzoi (08-10-2016),zLegendBatus (08-24-2016),ZloIKroleG (08-25-2016),ZoaGame (08-04-2016),zoccabr7 (08-23-2016),zzx007 (09-06-2016),_Darude_ (08-26-2016)

  3. #2
    ztolikz's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Worried
    Invalid Attachment specified. If you followed a valid link, please notify the administrator.

  4. #3
    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 mpmoi View Post
    (wait for @Psychotic @Joe @Dexter approval)
    READ THE TOPIC PLEASE <3
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  5. #4
    lol07345's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Invalid Attachment specified. If you followed a valid link, please notify the administrator. ı ve got this error :/

  6. #5
    nakoboy's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    0
    Could you update Reppin's auto pot pointer? Thx!

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

    As always post back results. Will manage your previous version(s) thread.






    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



  8. The Following User Says Thank You to Psychotic For This Useful Post:

    mpmoi (08-05-2016)

  9. #7
    lolsokekman's Avatar
    Join Date
    Jul 2016
    Gender
    male
    Posts
    11
    Reputation
    10
    Thanks
    0
    okey, did everything as your tutorial, now the water is changed to the value 1, but do not pull the bait ;(

  10. #8
    Glazey's Avatar
    Join Date
    Mar 2013
    Gender
    male
    Posts
    27
    Reputation
    10
    Thanks
    1
    My Mood
    Aggressive
    Thank you so much for updating it so much! We love you!

  11. #9
    ExecutionxD's Avatar
    Join Date
    Apr 2016
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    best bot i love u <3

  12. #10
    Azzusus's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Hey i have 1 question can i get ban????

  13. #11
    sdgdsgdssdggg's Avatar
    Join Date
    Jun 2016
    Gender
    female
    Posts
    13
    Reputation
    10
    Thanks
    1
    Quote Originally Posted by Azzusus View Post
    Hey i have 1 question can i get ban????
    Obviously yes

  14. #12
    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 lolsokekman View Post
    okey, did everything as your tutorial, now the water is changed to the value 1, but do not pull the bait ;(
    Pretty sure your fishing key is not "f"

    - - - Updated - - -

    Quote Originally Posted by nakoboy View Post
    Could you update Reppin's auto pot pointer? Thx!
    I'll try to work on 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
    ~~~~~~~~~~

  15. #13
    -eXtremeX-'s Avatar
    Join Date
    Dec 2012
    Gender
    male
    Posts
    20
    Reputation
    10
    Thanks
    1
    My Mood
    Confused
    Looks neat.

  16. #14
    fireblue35's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    when i'm fishing, the fishing rod disappear and is replaced by the current weapon.
    after, the lure does not appear and the rod(weapon) does not catch nothing, the voice error appears and i have to reload the game.
    The anti-afk is well turned off so i don't understand why it does this, i have the graphics in low so i dont know how to fix it and make it turn in afk...

    - - - Updated - - -

    ah, and it makes me "liquid type unkown

  17. #15
    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 fireblue35 View Post
    when i'm fishing, the fishing rod disappear and is replaced by the current weapon.
    after, the lure does not appear and the rod(weapon) does not catch nothing, the voice error appears and i have to reload the game.
    The anti-afk is well turned off so i don't understand why it does this, i have the graphics in low so i dont know how to fix it and make it turn in afk...

    - - - Updated - - -

    ah, and it makes me "liquid type unkown
    Wrong topic. My bot has no liquid type
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

Page 1 of 5 123 ... LastLast

Similar Threads

  1. [Outdated] MpPassiveFishingBot v1.7 : Auto-updating pointer
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 3
    Last Post: 08-01-2016, 02:35 PM
  2. [Outdated] MpPassiveFishingBot v1.6 : Auto-updating pointer
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 76
    Last Post: 08-01-2016, 11:37 AM
  3. [Outdated] MpPassiveFishingBot v1.5 : Auto-updating pointers
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 65
    Last Post: 07-22-2016, 04:51 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