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

    Arrow MpPassiveFishingBot v3.3 : Multi-account Fishbot

    Hey guys !

    Removed the stuck detection as it made the bot stuck himself (lol)

    Requierments : AutoHotKey (last version I guess)

    How it works :
    1)Download Source code (wait for @Psychotic @Wyo @Buddie approval or paste it in a .ahk file)
    2)Start it (Tutorial here : https://www.mpgh.net/forum/showthread.php?t=1150041 )
    3)Press Ctrl + F while facing water/lava/chocolate.

    -You can start it on as many accounts as you want.
    -Press Ctrl + F again to stop fishing on focused window.
    -To close the bot simply close the the GUI.

    Updating pointers :
    Pointers will be updated as often as I can.
    You can still find them by yourself or check the forums : Nippy's Fishbot pointers should work.
    To manually change the pointer, 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

    Not working ?
    -After an update :
    Check the last comments to see if there's any new pointer.
    If not, post here and wait for someone to post it or me to update it
    -Script not starting :
    Describe your issue here in comment
    -Other :
    Press the 'info' button on the GUI, then press "Copy Debug Data" and paste it here. It should look like this :
     
    Code:
    Version = 3.0
    Pointer = 0x00C8FF24
    Water Offsets = 0x8+0xb4+0x28+0x22c
    Lava Offsets = 0x8+0xb4+0x28+0x6e8
    Chocolate Offsets = 0x8+0xb4+0x28+0x488
    Water State Offsets = 0x1bc+0x4+0x748+0x1ec
    Lava State Offsets = 0x1bc+0x4+0x690+0x88
    Chocolate State Offsets = 0x1bc+0x4+0x748+0x448
    Client:
    PID = 4336
    Handle = 0x200570
    Base = 17104896
    Water Address = 96185852
    Lava Address = 96187064
    Chocolate Address = 96186456
    Water State Address = 96183132
    Lava State Address = 96182528
    Chocolate State Address = 96183736
    Client:
    PID = 8840
    Handle = 0x560580
    Base = 17104896
    Water Address = 90353164
    Lava Address = 90354376
    Chocolate Address = 90353768
    Water State Address = 90350444
    Lava State Address = 90349840
    Chocolate State Address = 90351048

    Then wait for an answer

    /!\ People seems to have hurdles on non-english versions
    /!\ Your fishing hotkey must be 'F'

     
    Code:
    #SingleInstance force
    #IfWinActive,Trove
    #NoEnv
    #Persistent
    SendMode Input
    SetBatchLines -1
    SplashTextOn,500,25,mpPassiveFishingBot,Initializing and updating pointer,please wait...
    if NOT A_IsAdmin{
    	Run *RunAs "%A_ScriptFullPath%"
    	ExitApp
    }
    
    Process,Exist,TeamViewer.exe
      If (ErrorLevel)
        Msgbox,% "Teamviewer is currenly running. This is a known program to cause issues with the fishbot. Please close it or disable quick connect feature. If issues still happen try to uninstall it."
    
    SetWorkingDir %A_ScriptDir%
    Active:=Object()
    
    global ver:=3.3
    global dataVer:=1
    global ptr:="0x0"
    global wOfts:="0x0"
    global lOfts:="0x0"
    global cOfts:="0x0"
    global wSOfts:="0x0"
    global lSOfts:="0x0"
    global cSOfts:="0x0"
    global iniFile:=A_ScriptDir "/config" ver ".ini"
    
    if (FileExist(iniFile)){
    	IniRead,dataVer,%iniFile%,Global,dataVer
    	IniRead,ptr,%iniFile%,Global,ptr
    	IniRead,wOfts,%iniFile%,Global,wOfts
    	IniRead,lOfts,%iniFile%,Global,lOfts
    	IniRead,cOfts,%iniFile%,Global,cOfts
    	IniRead,wSOfts,%iniFile%,Global,wSOfts
    	IniRead,lSOfts,%iniFile%,Global,lSOfts
    	IniRead,cSOfts,%iniFile%,Global,cSOfts
    }
    
    url:="https://dl.dropb" "oxuserconten*****m/u/52517919/MpFishingPointer.txt"
    WebRequest:=ComObjCreate("WinHttp.WinHttpRequest.5.1")
    WebRequest.Open("GET",url)
    WebRequest.Send()
    
    Contents:=StrSplit(WebRequest.ResponseText,"$")
    
    if (Contents[1]>dataVer){
    	global dataVer:=Contents[1]
    	global ptr:=Contents[2]
    	global wOfts:=Contents[3]
    	global lOfts:=Contents[4]
    	global cOfts:=Contents[5]
    	global wSOfts:=Contents[6]
    	global lSOfts:=Contents[7]
    	global cSOfts:=Contents[8]
    	IniWrite,%wOfts%,%iniFile%,Global,wOfts
    	IniWrite,%lOfts%,%iniFile%,Global,lOfts
    	IniWrite,%cOfts%,%iniFile%,Global,cOfts
    	IniWrite,%wSOfts%,%iniFile%,Global,wSOfts
    	IniWrite,%lSOfts%,%iniFile%,Global,lSOfts
    	IniWrite,%cSOfts%,%iniFile%,Global,cSOfts
    	IniWrite,%dataVer%,%iniFile%,Global,dataVer
    	IniWrite,%ptr%,%iniFile%,Global,ptr
    	TrayTip ,mpPassiveFishingBot,% "Values updated to :`nPointer : " ptr "`nWater offset : " wOfts "`nLava offset : " lOfts "`nChocolate offset : " cOfts "`nWater state offset : " wSOfts "`nLava state offset : " lSOfts "`nChocolate state offset : " cSOfts
    }
    
    Gui,1:New
    Gui 1:-Resize -MinimizeBox
    Gui,1:Add,ListView,Checked -Hdr grid -ReadOnly -LV0x10 w250,| | | |
    Gui,1:Add,Button,gInfo w250,&Info
    
    Gui,2:New
    Gui 2:-Resize -MinimizeBox
    Gui,2:Add,Text,,% "Current version : " ver "`n`nPointer : " ptr "`nWater offsets : " wOfts "`nLava offset : " lOfts "`nChocolate offset : " cOfts "`nWater state offsets : " wSOfts "`nLava state offset : " lSOfts "`nChocolate state offset : " cSOfts
    Gui,2:Add,Button,gDebug ,&Copy Debug Data
    
    SplashTextOff
    
    if (Contents[9]>ver){
    	num:=Contents[10]
    	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%
    }
    
    GUI,1:Show,,mpPassiveFishingBot
    
    SetTimer,Scan,250
    SetTimer,Update,999
    
    TrayTip,mpPassiveFishingBot,Bot started ! Press "Ctrl + f" on water/lava/chocolate !
    return
    
    ^f::
    	WinGet,p,pid,A
    	WinGet,n,ProcessName,ahk_pid %p%
    	if(n="Trove.exe"){
    		nActive:=Object()
    		f:=false
    		for i,C in Active{
    			if (C[1]=p)
    				f:=true
    			else
    				nActive.Insert(C)
    		}
    		if (!f){
    			NC:=[p,0,9,0,0,"Detecting"]
    			nActive.Insert(NC)
    			TrayTip,mpPassiveFishingBot,Bot started on %p%!
    		}else
    			TrayTip,mpPassiveFishingBot,Bot stopped on %p%!
    		Active:=nActive
    	}
    	return
    
    Scan:
    	for i,C in Active{
    		if (C[4]=0){
    			pid:=C[1]
    			WinGet,h,ID,ahk_pid %pid%
    			Base:=getProcessBaseAddress(h)
    			wSAdr:=GetAddress(pid,Base,ptr,wSOfts)
    			lSAdr:=GetAddress(pid,Base,ptr,lSOfts)
    			cSAdr:=GetAddress(pid,Base,ptr,cSOfts)
    			if (ReadMemory(wSAdr,pid)=1){
    				C[4]:=GetAddress(pid,Base,ptr,wOfts)
    				C[5]:=wSAdr
    				C[6]:="Water"
    			}else if (ReadMemory(lSAdr,pid)=1){
    				C[4]:=GetAddress(pid,Base,ptr,lOfts)
    				C[5]:=lSAdr
    				C[6]:="Lava"
    			}else if (ReadMemory(cSAdr,pid)=1){
    				C[4]:=GetAddress(pid,Base,ptr,cOfts)
    				C[5]:=cSAdr
    				C[6]:="Chocolate"
    			}else if (C[3]>5){
    				SendF(pid)
    				C[3]:=0
    			}
    		}else
    			if (C[3]>10 && ReadMemory(C[4],C[1])=1){
    				C[2] ++
    				C[3]:=0
    				SendF(C[1])
    			}else if (C[3]>5 && ReadMemory(C[5],C[1])=0){
    				SendF(C[1])
    				C[3]:=0
    			}
    	}
    	return
    
    Info:
    	Gui,2:Show,,Info
    	return
    
    Debug:
    	m:="[SP" "OILER=Debug][CO" "DE]version=" ver "`nPointer=" ptr "`nWater Offsets=" wOfts "`nLava Offsets=" lOfts "`nChocolate Offsets=" cOfts "`nWater State Offsets=" wSOfts "`nLava State Offsets=" lSOfts "`nChocolate State Offsets=" cSOfts
    	WinGet,l,list,ahk_exe Trove.exe
    	loop %l%{
    		WinGet,p,pid,% "ahk_id " l%a_index%
    		Base:=getProcessBaseAddress(h)
    		wAdr:=GetAddress(p,Base,ptr,wOfts)
    		lAdr:=GetAddress(p,Base,ptr,lOfts)
    		cAdr:=GetAddress(p,Base,ptr,cOfts)
    		wSAdr:=GetAddress(p,Base,ptr,wSOfts)
    		lSAdr:=GetAddress(p,Base,ptr,lSOfts)
    		cSAdr:=GetAddress(p,Base,ptr,cSOfts)
    		m:=m "`nClient" i ":`np=" p "`nHandle=" h "`nBase=" Base "`nWater Address=" wAdr "`nLava Address=" lAdr "`nChocolate Address=" cAdr "`nWater State Address=" wSAdr "`nLava State Address=" lSAdr "`nChocolate State Address=" cSAdr
    	}
    	m:=m "[/CO" "DE][/SPO" "ILER]"
    	clipboard=%m%
    	MsgBox,Debug data copied to clipboard
    	return
    
    GuiClose:
    	ExitApp
    
    Update:
    	for i,C in Active{
    		C[3] ++
    	}
    	LV_DELETE()
    	LV_Add("","Window PID","Liquid","Reeled","Timer")
    	WinGet,l,list,ahk_exe Trove.exe
    	WinGet,current,pid,A
    	WinGet,n,ProcessName,ahk_pid %current%
    	if(n !="Trove.exe")
    		ToolTip
    	loop %l%{
    		h:=l%a_index%
    		WinGet,pid,PID,ahk_id %h%
    		found:=false
    		for i,C in Active
    			if (C[1]=pid){
    				found:=true
    				LV_Add("Check",C[1],C[6],C[2],C[3])
    				if (current=pid)
    					ToolTip,% "Fishing`nPid : " C[1] "`nLiquid : " C[6] "`nReeled : " C[2] "`nTimer : " C[3],0,0
    			}
    		if (!found){
    			LV_Add("",PID,"Not fishing",0,0)
    			if (current=pid)
    				ToolTip,% "Not fishing`nPid : " pid,0,0
    		}
    	}
    	LV_ModifyCol()
    	return
    
    SendF(PID){
    	ControlSend,,{f down},ahk_pid %pid%
    	Sleep,90
    	ControlSend,,{f up},ahk_pid %pid%
    }
    
    getProcessBaseAddress(h){
    	return DllCall( A_PtrSize=4 ? "GetWindowLong": "GetWindowLongPtr","Ptr",h,"Int",-6,"Int64")
    }
    
    GetAddress(PID,Base,Adr,Ofts){
    	p:=ReadMemory(base + Adr,PID)	
    	OftsSpl:=StrSplit(Ofts,"+")
    	OftsCt:=OftsSpl.MaxIndex()
    	loop,%OftsCt%{
    		if (a_index=OftsCt)
    			p:=p + OftsSpl[a_index]
    	  	else
    			p:=ReadMemory(p + OftsSpl[a_index],PID)
    	}
    	return p
    }
    
    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)
    
    v2.2 (7529b):
    Minor optimisations and crash fixes
    
    v3.0 (8431b):
    Core code remade
    Fixed crash with multiple accounts
    GUI looks better
    Added a button to copy account and vars list, BBCODE formatted
    
    v3.1 (7512b):
    Gui and performance optimisations
    
    v3.2 (8177b):
    Fixed the lure glitch
    Stopping the bot if it get stuck
    
    v3.3 (6863b):
    Removed the code that checked if the bot get stuck
    Added a tooltip when on a trove window saying if this account is fishing or not, and how many fish have been reeled
    Fixed an issue with the config.ini file


    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 be responsible of any ban you get by using this !

    There are the virus scans :
    https://virusscan.jotti.org/en-US/fi...job/f9ygmrjpaj
    https://www.virustotal.com/en/file/e...is/1479674334/

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

    Arthuis (11-22-2016),astharoth890 (05-27-2017),aunman (11-25-2016),bmay213 (11-23-2016),boyzzblack (11-24-2016),Brinquedopuro (11-22-2016),CanalzinhoBRS (12-20-2016),ciccioaa (11-22-2016),CmaYliK (05-04-2017),CraftUrToeMC (11-20-2016),darien6342 (11-20-2016),DarkVextr0n (11-25-2016),FartHurts (11-24-2016),gpasit (11-22-2016),ITA_Teo (11-21-2016),jamyjars (11-21-2016),jchavez1 (12-16-2016),koollin (11-24-2016),kubakakauko (11-27-2016),lavablob2 (11-22-2016),meocondilac (11-20-2016),Mike_be (11-26-2016),monojung (11-24-2016),mrandroidbr (11-20-2016),nagenick (11-20-2016),Nozila7 (11-20-2016),onkelaia (11-21-2016),qaz08744 (11-24-2016),romancejr (11-21-2016),rrrrss1 (11-21-2016),shadow00f2 (11-27-2016),Takarm (11-28-2016),TBGH (07-15-2019),todayicreatedmyacc (11-21-2016),Unchard (11-20-2016),VaLenTin91 (11-27-2016),vexdemon99 (11-22-2016),vitorloko9 (11-26-2016),Xcodius (11-27-2016),xx1987 (11-22-2016)

  3. #2
    Bryan's Avatar
    Join Date
    May 2012
    Gender
    male
    Location
    Other MMORPG Area
    Posts
    2,618
    Reputation
    1461
    Thanks
    1,163
    My Mood
    Dead
    //Approved.
    Post back results. Thank you
    Last edited by Bryan; 11-20-2016 at 02:48 PM.

    Member since May 2010
    Donator/Premium since August 2015
    First Postban September 2016 :'(
    Premium Seller September 2016
    News Force November 2016
    Other Mmorpg Minion November 2016

  4. The Following User Says Thank You to Bryan For This Useful Post:

    mpmoi (11-20-2016)

  5. #3
    mystelia's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    I ready to get start!

  6. #4
    lavablob2's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    Doesn't work with the latest update

  7. #5
    Layar's Avatar
    Join Date
    Nov 2016
    Gender
    female
    Posts
    1
    Reputation
    10
    Thanks
    0
    Does not detect, just fishing for 6 sec

  8. #6
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,404
    My Mood
    Drunk
    Quote Originally Posted by Layar View Post
    Does not detect, just fishing for 6 sec
    I have to update the pointer ! I can't do it now ! I'll do it in 3 h when i'm back from work !

    - - - Updated - - -

    Nvm ! Pointer updated to 0x00CA198C ! Untested !

  9. The Following User Says Thank You to mpmoi For This Useful Post:

    lavablob2 (11-22-2016)

  10. #7
    lavablob2's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    works! thank you so much

  11. #8
    craig90's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    New pointer works! Thanks for the quick update.

  12. #9
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,404
    My Mood
    Drunk
    I'm aware of the ongoing patch ! Please wait if bot is not working after patch I'll find a new pointer !

    - - - Updated - - -

    Pointer working !
    ~~~~~~~~~~
    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. #10
    shadowmak's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    even with new poointer update, i cant get detect the water, it is stuck at 6 seconds for me

  14. #11
    projectKIN's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Location
    California 🌴
    Posts
    20
    Reputation
    10
    Thanks
    0
    Stick at 6 seconds for me dude D;

  15. #12
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,404
    My Mood
    Drunk
    Taking a look. Hold on

    - - - Updated - - -

    Quote Originally Posted by projectKIN View Post
    Stick at 6 seconds for me dude D;
    Can you provide the Debug please ?
    Is the bot sending a lure in water ?

    - - - Updated - - -

    Quote Originally Posted by shadowmak View Post
    even with new poointer update, i cant get detect the water, it is stuck at 6 seconds for me
    Can you provide the Debug please ?
    Is the bot sending a lure in water ?
    Last edited by mpmoi; 11-22-2016 at 02:44 PM.
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  16. #13
    shadowmak's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    yes, it does send it, but every 6 seconds, it takes it in the water and out



     
    Code:
    version=3.3
    Pointer=0x00CA198C
    Water Offsets=0x8+0xb4+0x28+0x22c
    Lava Offsets=0x8+0xb4+0x28+0x6e8
    Chocolate Offsets=0x8+0xb4+0x28+0x488
    Water State Offsets=0x1bc+0x4+0x748+0x1ec
    Lava State Offsets=0x1bc+0x4+0x690+0x88
    Chocolate State Offsets=0x1bc+0x4+0x748+0x448
    Client:
    p=3648
    Handle=0x10055a
    Base=20643840
    Water Address=556
    Lava Address=1768
    Chocolate Address=1160
    Water State Address=492
    Lava State Address=136
    Chocolate State Address=1096
    Last edited by shadowmak; 11-23-2016 at 06:31 PM.

  17. #14
    sethem66's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Location
    Denmark
    Posts
    6
    Reputation
    10
    Thanks
    1
    quick question since i can't seem to find this information anywhere else
    can trion see if i have 8 accounts on the same ip and potentially ban them all including my main(that i won't be fishing on)
    do they give ip bans at all?
    i'v tried the fishing bot at it works beautifully but after 2 days of fishing 6-8 hours in privat club i got afraid of them banning my main and alt accounts

    thanks again it's awesome to have talented people supplying us less talented with some upperhand

  18. #15
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,404
    My Mood
    Drunk
    Quote Originally Posted by sethem66 View Post
    quick question since i can't seem to find this information anywhere else
    can trion see if i have 8 accounts on the same ip and potentially ban them all including my main(that i won't be fishing on)
    do they give ip bans at all?
    i'v tried the fishing bot at it works beautifully but after 2 days of fishing 6-8 hours in privat club i got afraid of them banning my main and alt accounts

    thanks again it's awesome to have talented people supplying us less talented with some upperhand
    users seeems to be reporting that they get banned using more than 5 accounts on the same IP, and yeah trion can detect this easily.
    I don't think they'll do a ip ban but they might ban every account connected on this ip at the time

    - - - Updated - - -

    Quote Originally Posted by shadowmak View Post
    yes, it does send it, but every 6 seconds, it takes it in the water and out



     
    Code:
    version=3.3
    Pointer=0x00CA198C
    Water Offsets=0x8+0xb4+0x28+0x22c
    Lava Offsets=0x8+0xb4+0x28+0x6e8
    Chocolate Offsets=0x8+0xb4+0x28+0x488
    Water State Offsets=0x1bc+0x4+0x748+0x1ec
    Lava State Offsets=0x1bc+0x4+0x690+0x88
    Chocolate State Offsets=0x1bc+0x4+0x748+0x448
    Client:
    p=3648
    Handle=0x10055a
    Base=20643840
    Water Address=556
    Lava Address=1768
    Chocolate Address=1160
    Water State Address=492
    Lava State Address=136
    Chocolate State Address=1096
    Looks like the address failed to calculate !
    However you have the right pointer.

    What is your OS? Do you have admin rights ?
    ~~~~~~~~~~
    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 2 12 LastLast

Similar Threads

  1. [Outdated] MpPassiveFishingBot v3.5 : PTS/LIVE Multi-account fishing bot with boot drop
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 125
    Last Post: 06-19-2017, 07:48 AM
  2. [Outdated] MpPassiveFishingBot v3.4 : PTS/LIVE Multi-account fishing bot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 11
    Last Post: 12-01-2016, 11:01 AM
  3. [Outdated] MpPassiveFishingBot v3.2 : Multi-account Fishbot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 37
    Last Post: 11-20-2016, 02:36 PM
  4. [Outdated] MpPassiveFishingBot v3.1 : Multi-account Fishbot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 3
    Last Post: 11-18-2016, 02:47 AM
  5. [Outdated] MpPassiveFishingBot v3.0 : Multi-account Fishbot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 18
    Last Post: 11-17-2016, 02:21 AM