Page 1 of 3 123 LastLast
Results 1 to 15 of 38
  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 v3.2 : Multi-account Fishbot

    Hey guys !

    Small update here, fixed the lure glitch and made it stop if it get stuck !

    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
    #NoEnv
    #Persistent
    SendMode Input
    SetBatchLines -1
    SplashTextOn, 500,25, mpPassiveFishingBot, Initializing and updating pointers, please wait...
    
    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.2
    global _Version:=1
    global _Pointer:="0x0"
    global _PTSPointer:="0x0"
    global _wOffset:="0x0"
    global _lOffset:="0x0"
    global _cOffset:="0x0"
    global _wStateOffset:="0x0"
    global _lStateOffset:="0x0"
    global _cStateOffset:="0x0"
    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, _wStateOffset, %iniFile%, Global, _wStateOffset
    	IniRead, _lStateOffset, %iniFile%, Global, _lStateOffset
    	IniRead, _cStateOffset, %iniFile%, Global, _cStateOffset
    }
    
    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] > _Version){
    	global _Version:=Contents[1]
    	global _Pointer:=Contents[2]
    	global _wOffset:=Contents[3]
    	global _lOffset:=Contents[4]
    	global _cOffset:=Contents[5]
    	global _wStateOffset:=Contents[6]
    	global _lStateOffset:=Contents[7]
    	global _cStateOffset:=Contents[8]
    	IniWrite, %_wOffset%, %iniFile%, Global, _wOffset
    	IniWrite, %_lOffset%, %iniFile%, Global, _lOffset
    	IniWrite, %_cOffset%, %iniFile%, Global, _cOffset
    	IniWrite, %_wStateOffset%, %iniFile%, Global, _wStateOffset
    	IniWrite, %_lStateOffset%, %iniFile%, Global, _lStateOffset
    	IniWrite, %_cStateOffset%, %iniFile%, Global, _cStateOffset
    	IniWrite, %_Version%, %iniFile%, Global, _Version
    	IniWrite, %_Pointer%, %iniFile%, Global, _Pointer
    	TrayTip ,mpPassiveFishingBot, % "Values updated to :`nPointer : " . _Pointer . "`nWater offset : " . _wOffset . "`nLava offset : " . _lOffset . "`nChocolate offset : " . _cOffset . "`nWater state offset : " . _wStateOffset . "`nLava state offset : " . _lStateOffset . "`nChocolate state offset : " . _cStateOffset
    }
    
    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 : %_Pointer%`nWater offsets : %_wOffset%`nLava offset : %_lOffset%`nChocolate offset : %_cOffset%`nWater state offsets : %_wStateOffset%`nLava state offset : %_lStateOffset%`nChocolate state offset : %_cStateOffset%
    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, 999
    SetTimer, UpdateGui, 999
    
    TrayTip, mpPassiveFishingBot, Bot started ! Press "Ctrl + f" on water/lava/chocolate !
    return
    
    #IfWinActive, Trove
    ^f::
    	WinGet, p, pid, A
    	WinGet, pName, ProcessName, ahk_pid %p%
    	if(pName = "Trove.exe"){
    		newActive := Object()
    		found := false
    		for i, C in Active{
    			if (C[1] = p)
    				found := true
    			else
    				newActive.Insert(C)
    		}
    		if (!found){
    			NC := [p,0,9,0,0,"Detecting",0]
    			newActive.Insert(NC)
    			TrayTip, mpPassiveFishingBot, Bot started on %p%!
    		}else
    			TrayTip, mpPassiveFishingBot, Bot stopped on %p%!
    		Active := newActive
    	}
    	return
    
    Scan:
    	for i, C in Active{
    		if (C[7] < 5){
    			if (C[4] = 0)
    			{
    				pid := C[1]
    				WinGet, Handle, ID, ahk_pid %pid%
    				Base := getProcessBaseAddress(Handle)
    				wStateAddress := GetAddress(pid, Base, _Pointer, _wStateOffset)
    				lStateAddress := GetAddress(pid, Base, _Pointer, _lStateOffset)
    				cStateAddress := GetAddress(pid, Base, _Pointer, _cStateOffset)
    				wStateValue := ReadMemory(wStateAddress, pid)
    				lStateValue := ReadMemory(lStateAddress, pid)
    				cStateValue := ReadMemory(cStateAddress, pid)
    				if (wStateValue = 1){
    					C[4] := GetAddress(pid, Base, _Pointer, _wOffset)
    					C[5] := wStateAddress
    					C[6] := "Water"
    				}else if (lStateValue = 1){
    					C[4] := GetAddress(pid, Base, _Pointer, _lOffset)
    					C[5] := lStateAddress
    					C[6] := "Lava"
    				}else if (cStateValue = 1){
    					C[4] := GetAddress(pid, Base, _Pointer, _cOffset)
    					C[5] := cStateAddress
    					C[6] := "Chocolate"
    				}else if (C[3] > 3 + C[7]){
    					SendF(pid)
    					C[7] ++
    					C[3] := 0
    				}
    			}else
    				if (C[3]>10 && ReadMemory(C[4], C[1])=1){
    					C[2] ++
    					C[3] := 0
    					C[7] := 0
    					SendF(C[1])
    				}else if (C[3] > 3 + C[7] && ReadMemory(C[5], C[1]) = 0){
    					SendF(C[1])
    					C[7] ++
    					C[3] := 0
    				}
    		}else{
    			newActive := Object()
    			for i, Cl in Active
    				if (Cl[1] != C[1])
    					newActive.Insert(Cl)
    			Active := newActive
    			TrayTip, mpPassiveFishingBot, % "Bot stuck for " C[1]
    		}
    	}
    	return
    
    Info:
    	Gui, 2:Show, , Info
    	return
    
    Debug:
    	message := "[SP" . "OILER=Debug][CO" . "DE]Version = " . Ver . "`nPointer = " . _Pointer . "`nWater Offsets = " . _wOffset . "`nLava Offsets = " . _lOffset . "`nChocolate Offsets = " . _cOffset . "`nWater State Offsets = " . _wStateOffset . "`nLava State Offsets = " . _lStateOffset . "`nChocolate State Offsets = " . _cStateOffset
    	WinGet, l, list, ahk_exe Trove.exe
    	loop %l%{
    		WinGet, pid, PID, % "ahk_id " l%a_index%
    		Base := getProcessBaseAddress(Handle)
    		wAddress := GetAddress(pid, Base, _Pointer, _wOffset)
    		lAddress := GetAddress(pid, Base, _Pointer, _lOffset)
    		cAddress := GetAddress(pid, Base, _Pointer, _cOffset)
    		wStateAddress := GetAddress(pid, Base, _Pointer, _wStateOffset)
    		lStateAddress := GetAddress(pid, Base, _Pointer, _lStateOffset)
    		cStateAddress := GetAddress(pid, Base, _Pointer, _cStateOffset)
    		message := message . "`nClient" . i . ":`nPID = " . pid . "`nHandle = " . Handle . "`nBase = " . Base . "`nWater Address = " . wAddress . "`nLava Address = " . lAddress . "`nChocolate Address = " . cAddress . "`nWater State Address = " . wStateAddress . "`nLava State Address = " . lStateAddress . "`nChocolate State Address = " . cStateAddress
    	}
    	message := message . "[/CO" . "DE][/SPO" . "ILER]"
    	clipboard = %message%
    	MsgBox, Debug data copied to clipboard
    	return
    
    GuiClose:
    	ExitApp
    
    UpdateGui:
    	for i, C in Active{
    		C[3] ++
    	}
    	LV_DELETE()
    	LV_Add("", "Window PID","Liquid","Reeled","Timer")
    	WinGet, l, list, ahk_exe Trove.exe
    	loop %l%{
    		Handle := l%a_index%
    		WinGet, pid, PID, ahk_id %Handle%
    		found := false
    		for i, C in Active{
    			p := C[1]
    			if (p = pid){
    				found := true
    				LV_Add("Check",C[1],C[6],C[2],C[3])
    			}
    		}
    		if (!found)
    			LV_Add("", PID, "Not Fishing",0,0)
    	}
    	LV_ModifyCol()
    	return
    
    SendF(PID){
    	ControlSend, , {f down}, ahk_pid %pid%
    	Sleep, 90
    	ControlSend, , {f up}, ahk_pid %pid%
    }
    
    getProcessBaseAddress(Handle){
    	return DllCall( A_PtrSize = 4 ? "GetWindowLong": "GetWindowLongPtr", "Ptr", Handle, "Int", -6, "Int64")
    }
    
    GetAddress(PID, Base, Address, Offset){
    	p := ReadMemory(base + Address,PID)	
    	OffsetSplit := StrSplit(Offset, "+")
    	OffsetCount := OffsetSplit.MaxIndex()
    	loop, %OffsetCount%{
    		if (a_index = OffsetCount)
    			p := p + OffsetSplit[a_index]
    	  	else
    			p := ReadMemory(p + OffsetSplit[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 he get stuck


    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://www.virustotal.com/en/file/f...is/1479469500/
    https://virusscan.jotti.org/en-US/fi...job/e8yggp0a5g

    NOTE : Old thread can be closed
    <b>Downloadable Files</b> Downloadable Files
    Last edited by mpmoi; 11-18-2016 at 04:49 AM.
    ~~~~~~~~~~
    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 23 Users Say Thank You to mpmoi For This Useful Post:

    Bryan (11-18-2016),CmaYliK (05-04-2017),CraftUrToeMC (11-18-2016),darien6342 (11-19-2016),fajartedy622 (11-19-2016),Gun point (11-20-2016),jamyjars (11-19-2016),jimmyhui3567 (11-19-2016),keesongyang4 (11-18-2016),Layar (11-19-2016),Mario100 (11-19-2016),meocondilac (11-19-2016),Mike_be (11-18-2016),painw (11-18-2016),pirateyman (11-19-2016),romancejr (11-19-2016),rrrrss1 (11-19-2016),shilsmhan (11-19-2016),smfdbitch (11-19-2016),Teleporterofdeath (11-18-2016),VoidDemon (11-20-2016),xx1987 (11-19-2016),yrtfgdfr (03-30-2020)

  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
    Checked, everythings fine. //Approved.

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

    mpmoi (11-18-2016),[MPGH]Psychotic (11-18-2016)

  5. #3
    giltheking2220's Avatar
    Join Date
    Nov 2015
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    0
    thanks man

  6. #4
    mpmoi's Avatar
    Join Date
    Aug 2015
    Gender
    male
    Location
    Here there
    Posts
    788
    Reputation
    26
    Thanks
    4,401
    My Mood
    Drunk
    I might think about a boot destroyer and loot collector now, this is on the todo list!
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

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

    meocondilac (11-19-2016)

  8. #5
    FastLastName's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Posts
    7
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by mpmoi View Post
    I might think about a boot destroyer and loot collector now, this is on the todo list!
    What about trophy destroyer ?

  9. #6
    ysa05011's Avatar
    Join Date
    May 2015
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    1
     
    Code:
    Version = 3.2
    Pointer = 
    Water Offsets = 
    Lava Offsets = 
    Chocolate Offsets = 
    Water State Offsets = ERROR
    Lava State Offsets = ERROR
    Chocolate State Offsets = ERROR
    Client:
    PID = 40356
    Handle = 0x5f0a9c
    Base = 2424832
    Water Address = 0
    Lava Address = 0
    Chocolate Address = 0
    Water State Address = 
    Lava State Address = 
    Chocolate State Address =

  10. #7
    Hensh's Avatar
    Join Date
    Nov 2016
    Gender
    male
    Posts
    46
    Reputation
    10
    Thanks
    8
    Looks good. Thank you

  11. #8
    MelvinJonas's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
     
    Code:
    Version = 3.2
    Pointer = 
    Water Offsets = 
    Lava Offsets = 
    Chocolate Offsets = 
    Water State Offsets = ERROR
    Lava State Offsets = ERROR
    Chocolate State Offsets = ERROR
    Client1:
    PID = 4800
    Handle = 0x20366
    Base = 1048576
    Water Address = 0
    Lava Address = 0
    Chocolate Address = 0
    Water State Address = 
    Lava State Address = 
    Chocolate State Address =

  12. #9
    mrora's Avatar
    Join Date
    Dec 2015
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by ysa05011 View Post
     
    Code:
    Version = 3.2
    Pointer = 
    Water Offsets = 
    Lava Offsets = 
    Chocolate Offsets = 
    Water State Offsets = ERROR
    Lava State Offsets = ERROR
    Chocolate State Offsets = ERROR
    Client:
    PID = 40356
    Handle = 0x5f0a9c
    Base = 2424832
    Water Address = 0
    Lava Address = 0
    Chocolate Address = 0
    Water State Address = 
    Lava State Address = 
    Chocolate State Address =
    Quote Originally Posted by MelvinJonas View Post
     
    Code:
    Version = 3.2
    Pointer = 
    Water Offsets = 
    Lava Offsets = 
    Chocolate Offsets = 
    Water State Offsets = ERROR
    Lava State Offsets = ERROR
    Chocolate State Offsets = ERROR
    Client1:
    PID = 4800
    Handle = 0x20366
    Base = 1048576
    Water Address = 0
    Lava Address = 0
    Chocolate Address = 0
    Water State Address = 
    Lava State Address = 
    Chocolate State Address =
    You most likely have an old config.ini from using an older version. Delete the config.ini and relaunch the script.

  13. #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 ysa05011 View Post
     
    Code:
    Version = 3.2
    Pointer = 
    Water Offsets = 
    Lava Offsets = 
    Chocolate Offsets = 
    Water State Offsets = ERROR
    Lava State Offsets = ERROR
    Chocolate State Offsets = ERROR
    Client:
    PID = 40356
    Handle = 0x5f0a9c
    Base = 2424832
    Water Address = 0
    Lava Address = 0
    Chocolate Address = 0
    Water State Address = 
    Lava State Address = 
    Chocolate State Address =
    Looks like your pointer didn't updated

    - - - Updated - - -

    Quote Originally Posted by MelvinJonas View Post
     
    Code:
    Version = 3.2
    Pointer = 
    Water Offsets = 
    Lava Offsets = 
    Chocolate Offsets = 
    Water State Offsets = ERROR
    Lava State Offsets = ERROR
    Chocolate State Offsets = ERROR
    Client1:
    PID = 4800
    Handle = 0x20366
    Base = 1048576
    Water Address = 0
    Lava Address = 0
    Chocolate Address = 0
    Water State Address = 
    Lava State Address = 
    Chocolate State Address =
    Same for you

    You should both follow this or paste the following in your config.ini

    - - - Updated - - -

    Quote Originally Posted by mrora View Post
    You most likely have an old config.ini from using an older version. Delete the config.ini and relaunch the script.
    Code:
    [Global]
    _wOffset=0x8+0xb4+0x28+0x22c
    _lOffset=0x8+0xb4+0x28+0x6e8
    _cOffset=0x8+0xb4+0x28+0x488
    _wStateOffset=0x1bc+0x4+0x748+0x1ec
    _lStateOffset=0x1bc+0x4+0x690+0x88
    _cStateOffset=0x1bc+0x4+0x748+0x448
    _Version=46
    _Pointer=0x00C8FF24
    You should also try starting this as admin

    - - - Updated - - -

    Quote Originally Posted by FastLastName View Post
    What about trophy destroyer ?
    Because as a trophy collector I think they have some other uses
    Last edited by mpmoi; 11-19-2016 at 12:40 AM.
    ~~~~~~~~~~
    Vouch thread
    ~~~~~~~~~~
    Trove scripts :
    Anti afk kick ~ Fishing bot ~ Bombing bot ~ Items picking
    ~~~~~~~~~~
    Trove cheats & tools:
    Fishing pointer ~ Speedhack
    ~~~~~~~~~~
    Trove tutorials :
    Find fishing pointer
    ~~~~~~~~~~

  14. #11
    Sothd's Avatar
    Join Date
    Apr 2016
    Gender
    male
    Posts
    3
    Reputation
    10
    Thanks
    0
    The hotkey ^f will not be active because it does not exist in the current keyboard layout. What must i do? I changed the keyboard layout

  15. #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 Sothd View Post
    The hotkey ^f will not be active because it does not exist in the current keyboard layout. What must i do? I changed the keyboard layout
    replace ^f::
    by {yourkey}::
    where {yourkey}is the hotkey you want (i'd suggest numpad ones as they are not ingame hotkeys)

    - - - Updated - - -

    Or maybe the hotkeys is still active ! Try dismissing the message and pressing ctrl+ f on a trove window
    ~~~~~~~~~~
    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
    MelvinJonas's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    I am sorry, i do not understand where to paste that code.

  17. #14
    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 MelvinJonas View Post
    I am sorry, i do not understand where to paste that code.
    You don't have to paste it, just download the file. extract it and start 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
    ~~~~~~~~~~

  18. #15
    MelvinJonas's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Posts
    6
    Reputation
    10
    Thanks
    0
    My Mood
    Asleep
    I tried redownloading the file posted, it still shows

     
    Code:
    Version = 3.2
    Pointer = 
    Water Offsets = 
    Lava Offsets = 
    Chocolate Offsets = 
    Water State Offsets = ERROR
    Lava State Offsets = ERROR
    Chocolate State Offsets = ERROR
    Client1:
    PID = 5620
    Handle = 0x3703c4
    Base = 13762560
    Water Address = 0
    Lava Address = 0
    Chocolate Address = 0
    Water State Address = 
    Lava State Address = 
    Chocolate State Address =


    If possible can you please tell me the steps? I am not much of a coder. I apologize for any troubles i have caused.
    Last edited by MelvinJonas; 11-19-2016 at 05:14 AM.

Page 1 of 3 123 LastLast

Similar Threads

  1. [Outdated] MpPassiveFishingBot v3.3 : Multi-account Fishbot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 19
    Last Post: 11-26-2016, 10:52 PM
  2. [Outdated] MpPassiveFishingBot v3.1 : Multi-account Fishbot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 3
    Last Post: 11-18-2016, 02:47 AM
  3. [Outdated] MpPassiveFishingBot v3.0 : Multi-account Fishbot
    By mpmoi in forum Trove Hacks & Cheats
    Replies: 18
    Last Post: 11-17-2016, 02:21 AM
  4. [Detected] No More Multi-Accounting!
    By [|]SilentHunter[|] in forum CrossFire Discussions
    Replies: 12
    Last Post: 08-09-2011, 04:14 AM
  5. [Release] CA MULTI Account Generator EU with GGFM
    By Zoom in forum Combat Arms Europe Hacks
    Replies: 6
    Last Post: 02-26-2010, 07:12 AM