Page 1 of 8 123 ... LastLast
Results 1 to 15 of 113
  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.1 : PTS/LIVE fishing bot. Auto-updating pointer.

    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.1
    global _Motd:=""
    global _Version:=1
    global _PTSVersion:=1
    global _Pointer:="0x0"
    global _PTSPointer:="0x0"
    global _wOffset:="0x0"
    global _lOffset:="0x0"
    global _cOffset:="0x0"
    global _PTSwOffset:="0x0"
    global _PTSlOffset:="0x0"
    global _PTScOffset:="0x0"
    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, ahk_exe Trove.exe
    	Loop %l%
    	{
    		Handle := l%a_index%
    		WinGet, pid, PID, ahk_id %Handle%
    		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, ahk_exe Trove.exe
    	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, ahk_exe Trove.exe
    	Loop %l%
    	{
    		Handle := l%a_index%
    		WinGet, pid, PID, ahk_id %Handle%
    		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
    
    v2.1 (7990b):
    Modified window selection to prevent selection non-trove window
    Removed handle reading (already have it)
    Cleaned up initial values of pointer/offsets(were wrong)


    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/e...is/1473449502/
    https://virusscan.jotti.org/fr-FR/fi...job/vflk6qpu6d

    NOTE : Old thread can be closed
    <b>Downloadable Files</b> Downloadable Files
    Last edited by mpmoi; 09-09-2016 at 01:57 PM. Reason: Title version
    ~~~~~~~~~~
    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 124 Users Say Thank You to mpmoi For This Useful Post:

    0000prizrak0000 (10-15-2016),212145759 (09-15-2016),2cocksplease (09-09-2016),4miga (10-20-2016),aggro12 (09-12-2016),ALPACA222 (10-26-2016),AlphaRazer01 (10-07-2016),andresgan (09-13-2016),apollo12 (09-15-2016),AquaAndrew (10-08-2016),ArKTiZ (09-13-2016),ARNE123456789 (10-06-2016),Arthuis (09-28-2016),AtrezzoLDK (10-02-2016),balint1000 (09-18-2016),ben120425 (09-18-2016),Blackefire (09-21-2016),BlitzMaluco (10-01-2016),BlueBeeez (10-09-2016),BonFire225 (10-16-2016),BoomsKunG (09-10-2016),Chuck_43 (10-30-2016),coyoteck (09-25-2016),danslek (10-20-2016),DarkChaosLord (10-07-2016),Darsel (11-05-2016),Demon_TV (09-27-2016),dudu.scha (09-25-2016),Egor Pavlenko (10-21-2016),Elkid2766 (09-10-2016),ErManciuz (09-10-2016),fairy556 (10-18-2016),Fir3m4n (09-11-2016),Fpereirinha (11-06-2016),Fvost (09-23-2016),GamePlayr (11-08-2016),GamingGuy112 (09-15-2016),gau130 (10-06-2016),Geterwin (09-29-2016),GetOutofMe (09-10-2016),greenbil (10-12-2016),GRLOVE (09-15-2016),gunshank (10-09-2016),hadrin (10-12-2016),haha07666 (09-13-2016),haijiayuan (11-03-2016),Hakkeri1999 (09-13-2016),huarlo (09-13-2016),hydrogentz (10-17-2016),iAlexander12 (10-18-2016),IcedShake (09-28-2016),IevilninjaI (10-09-2016),imkbspk (10-08-2016),Jabbawocki (10-18-2016),jamyjars (10-05-2016),johnny0523 (10-08-2016),JohnnyNimble (10-06-2016),kevin216heidi (10-26-2016),kooboy97 (11-03-2016),Kozanq (10-17-2016),kubakakauko (10-08-2016),Kyokkei (10-26-2016),lider6616 (10-12-2016),lightskin (10-22-2016),link_354 (09-09-2016),LOLLord01 (10-15-2016),louistawan9 (09-11-2016),magnitued (10-09-2016),marthxer (09-12-2016),Mashirolol (10-09-2016),Mekkor... (11-08-2016),melekpek (09-10-2016),MHenriiquez (09-13-2016),Moho86 (11-03-2016),monkeyman1778 (09-24-2016),mookaewzaaz (10-22-2016),nickmegax (12-04-2016),Nielt (10-26-2016),nirostirar (09-25-2016),NoNameFailL (09-23-2016),Nozilindo (09-18-2016),nycol (10-26-2016),OverActSoul (11-05-2016),Patroxy (10-25-2016),PixR1t (10-23-2016),pongpangjr (11-04-2016),prabtongtong (09-10-2016),pratza1456 (10-13-2016),Prinssy (11-05-2016),[MPGH]Psychotic (09-09-2016),Rammers69 (11-06-2016),ReddoNagaiyo (11-08-2016),ReploidGodX (10-13-2016),ricolaw (09-15-2016),Roccat1212 (10-30-2016),RoflJedy (10-03-2016),Rooss53 (10-05-2016),Sam Malkin (10-25-2016),shadowlink98 (09-17-2016),SirMaxy (11-05-2016),sittiesky (11-06-2016),SweqSecone (11-06-2016),temp-accounts (10-12-2016),TheDerpyManYT (10-25-2016),TMGhost (10-09-2016),TuaMaeDe (10-29-2016),Tubestah (10-07-2016),vardarling (09-15-2016),verybadping (10-23-2016),viine (09-14-2016),VoidDemon (11-09-2016),voltix (09-10-2016),Yonann (09-20-2016),yongqing (11-05-2016),Yosep Agus Nugraha (09-21-2016),yosep.fartagal (09-21-2016),zasunboss (10-16-2016),zelps (11-05-2016),Zephyrus101 (10-09-2016),zLegendBatus (11-02-2016),zlyjakcza12 (10-27-2016),zobb978654 (09-28-2016),zoccabr7 (09-24-2016),zslayern (09-30-2016)

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

    Use at your own risk and 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 2 Users Say Thank You to Psychotic For This Useful Post:

    Danny (09-09-2016),mpmoi (09-09-2016)

  5. #3
    Raple's Avatar
    Join Date
    Jan 2013
    Gender
    male
    Posts
    10,149
    Reputation
    3856
    Thanks
    9,494
    wow these low key contributors always catch me by surprise.

  6. #4
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    And you like that

  7. #5
    x2relD's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    I run and press F and nothing happens

  8. #6
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    Followed the video tutorial ?
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  9. #7
    x2relD's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Yes, everything did run, even changing the value in the program, but in the game the character does nothing

  10. #8
    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 x2relD View Post
    Yes, everything did run, even changing the value in the program, but in the game the character does nothing
    Cna you paste here the content of config.ini file ?
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  11. #9
    andresgan's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    41
    Boot destroyer ?

  12. #10
    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 andresgan View Post
    Boot destroyer ?
    Thank you for reading
    Quote Originally Posted by mpmoi View Post
    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.
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  13. #11
    Hakkeri1999's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    Not working after todays patch, llame.

  14. #12
    nakoboy's Avatar
    Join Date
    May 2016
    Gender
    male
    Posts
    34
    Reputation
    10
    Thanks
    0
    Probably new pointer is 0x03E51DA0 - Although, offsets might have been changed.

  15. #13
    x2relD's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    [Global]
    _Version=27
    _Pointer=0x00B47484
    _wOffset=0x8+0xb4+0x28+0x22c
    _lOffset=0x8+0xb4+0x28+0x6e8
    _cOffset=0x8+0xb4+0x28+0x488
    _PTSVersion=2
    _PTSPointer=0x00C1C8DC
    _PTSwOffset=0x8+0xb4+0x28+0x22c
    _PTSlOffset=0x8+0xb4+0x28+0x6e8
    _PTScOffset=0x8+0xb4+0x28+0x488
    _Motd=

  16. #14
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    Going to test
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  17. #15
    x2relD's Avatar
    Join Date
    Aug 2016
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    The rod drops and does not pull

Page 1 of 8 123 ... LastLast

Similar Threads

  1. [Outdated] MpPassiveFishingBot v2.2 : PTS/LIVE fishing bot. Auto-updating pointer.
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 8
    Last Post: 11-15-2016, 12:16 PM
  2. [Outdated] MpPassiveFishingBot v2.0 : Auto-updating pointer. Now on PTS
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 67
    Last Post: 09-11-2016, 06:18 AM
  3. [Patched] TaeJim's Trove Bot Script (Fishing Bot, Auto-HP Bot) [UPDATE 01/08/2015)
    By taejim in forum Trove Hacks & Cheats
    Replies: 68
    Last Post: 08-04-2015, 11:39 PM
  4. [Outdated] Fish Bot Simple Update ! [04/21/2015]
    By Trove in forum Trove Hacks & Cheats
    Replies: 18
    Last Post: 04-29-2015, 05:31 PM
  5. [Outdated] Fish Bot Simple Update !
    By Trove in forum Trove Hacks & Cheats
    Replies: 27
    Last Post: 04-21-2015, 11:50 AM