Page 3 of 15 FirstFirst 1234513 ... LastLast
Results 31 to 45 of 222
  1. #31
    icykoala's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    1
    Reputation
    10
    Thanks
    0
    Does This work on Windows 8 ?

  2. #32
    msazndragon's Avatar
    Join Date
    May 2009
    Gender
    male
    Posts
    48
    Reputation
    10
    Thanks
    3
    How do I run it on windows 8.1? It works on my windows 7 computer

  3. #33
    errorlog's Avatar
    Join Date
    Jun 2009
    Gender
    male
    Posts
    2
    Reputation
    10
    Thanks
    0
    do you know the address for the Boolean that triggers the Game if the player is on the water and or not...
    because that can be use to create a more Stable Anti-gravity Hack
    been looking for it for a while but i cant seem to find the pointer

  4. #34
    JohnTGM's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    7
    Reputation
    10
    Thanks
    0
    Realy nice job.

  5. #35
    konradmm's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    134
    Reputation
    10
    Thanks
    2,035
    My Mood
    Sad
    If u dont mind, im using ur pointers to create my own fish bot (currently working on auto-drop of boots)
    User would need only to show the boot icon in the transparent box:
    Last edited by konradmm; 07-17-2015 at 05:30 AM.

  6. The Following 2 Users Say Thank You to konradmm For This Useful Post:

    nilotaviano (07-17-2015),willwill173 (07-23-2015)

  7. #36
    Vuqe's Avatar
    Join Date
    Jul 2013
    Gender
    male
    Posts
    5
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by konradmm View Post
    If u dont mind, im using ur pointers to create my own fish bot (currently working on auto-drop of boots)
    User would need only to show the boot icon in the transparent box:

    Looking cool man! Hope its getting released soon

  8. #37
    taejim's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Trove
    Posts
    301
    Reputation
    10
    Thanks
    892
    My Mood
    Devilish
    Quote Originally Posted by icykoala View Post
    Does This work on Windows 8 ?
    Quote Originally Posted by msazndragon View Post
    How do I run it on windows 8.1? It works on my windows 7 computer
    just install AHK and then run the file as admin

    Quote Originally Posted by konradmm View Post
    If u dont mind, im using ur pointers to create my own fish bot (currently working on auto-drop of boots)
    User would need only to show the boot icon in the transparent box:
    yeah you are welcome m8 perharps could i have ur skype? and i tried to create the GUI but it seem really pointless. I'm trying to approach the problem in a different way message me your skype we can discuss this

  9. #38
    konradmm's Avatar
    Join Date
    Apr 2012
    Gender
    male
    Posts
    134
    Reputation
    10
    Thanks
    2,035
    My Mood
    Sad
    Quote Originally Posted by taejim View Post
    yeah you are welcome m8 perharps could i have ur skype? and i tried to create the GUI but it seem really pointless. I'm trying to approach the problem in a different way message me your skype we can discuss this
    I guess i dont know how to PM u or i can't.
    anyway here is my skype: ashcangm

  10. #39
    DontkiJlme's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    0
    fixed :C WTF ?

  11. #40
    taejim's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Trove
    Posts
    301
    Reputation
    10
    Thanks
    892
    My Mood
    Devilish
    Okay ppl so this is my new code im have been working on, it is much shorter and 3 mode combine, it should be better than Zog's fishing script that i used before

     

    Water, Choco, Lava all-in-one:
    Code:
    #WinActivateForce
    
    Numpad6::
    	WinGet, pidn, PID, A
    	pid := pidn
    	WinGet, hwnds, ID, A
    	Handle := hwnds
    	Lure := 9999
    	Base := getProcessBaseAddress()
    	WaterAddress := GetAddressWater(Base,0x009570DC) 
    	LavaAddress := GetAddressLava(Base,0x009570DC) 
    	ChocoAddress := GetAddressChoco(Base,0x009570DC) 
    	
    	LureCount := 0
    	Loop %Lure%
    	{
    		LureCount := LureCount +1
    		ControlSend, , {c down}, ahk_pid %pid%
    		Sleep, 86
    		ControlSend, , {c up}, ahk_pid %pid%
    		Sleep, 500
    		ControlSend, , {f down}, ahk_pid %pid%
    		Sleep, 86
    		ControlSend, , {f up}, ahk_pid %pid%
    		Catch := 0
    		PoleCheck := 40
    
    		Loop  
    		{
    			If (Catch = 1)
    			{	
    				break
    			}
    			else
    			{
    				If (PoleCheckN = PoleCheck)
    				{
    					ControlSend, , {f down}, ahk_pid %pid%
    					Sleep, 86
    					ControlSend, , {f up}, ahk_pid %pid%
    					LureCount := 0
    				}
    				else
    				{
    				}
    				CaughtWater := ReadMemory(WaterAddress)
    				CaughtLava := ReadMemory(LavaAddress)
    				CaughtChoco := ReadMemory(ChocoAddress)
    				If (CaughtWater = 1 or CaughtLava = 1 or CaughtChoco = 1)
    				{
    					ControlSend, , {f down}, ahk_pid %pid%
    					Sleep, 86
    					ControlSend, , {f up}, ahk_pid %pid%
    					Random, Wait, 2000, 3500
    					Sleep, %Wait%
    					Catch := 1
    				}
    				else 
    				{
    					PoleCheckN := PoleCheckN +1
    					Sleep, 1000
    				}
    			}
    		}
    	}
    ExitApp
    
    Numpad7::
    ExitApp
    
    GetAddressWater(Base, Address)
    {
        pointerBase := base + Address
        y1 := ReadMemory(pointerBase)
        y2 := ReadMemory(y1 + 0x144)
        y3 := ReadMemory(y2 + 0xe4)
        Return WaterAddress := (y3 + 0x70)   
    }
    
    GetAddressLava(Base, Address)
    {
        	pointerBase := base + Address
        	y1 := ReadMemory(pointerBase)
        	y2 := ReadMemory(y1 + 0x144)
        	y3 := ReadMemory(y2 + 0xe4)
        	Return LavaAddress := (y3 + 0x514) 
    }
    
    GetAddressChoco(Base, Address)
    {
        	pointerBase := base + Address
        	y1 := ReadMemory(pointerBase)
        	y2 := ReadMemory(y1 + 0x144)
        	y3 := ReadMemory(y2 + 0xe4)
        	Return ChocoAddress := (y3 + 0x2c0) 
    }
    
    getProcessBaseAddress()
    {
        	Global Handle
        	return DllCall( A_PtrSize = 4
                                ? "GetWindowLong"
                                : "GetWindowLongPtr"
                            , "Ptr", Handle
                            , "Int", -6
                            , "Int64") ; Use Int64 to prevent negative overflow when AHK is 32 bit and target process is 64bit
         	; If DLL call fails, returned value will = 0
    }   
    
    ReadMemory(MADDRESS)
    {
        	Global pid
        	VarSetCapacity(MVALUE,4,0)
        	ProcessHandle := DllCall("OpenProcess", "Int", 24, "Char", 0, "UInt", pid, "UInt")
        	;DllCall("ReadProcessMemory","UInt",ProcessHandle,"UInt",MADDRESS,"Str",MVALUE,"UInt",4,"UInt *",0)
        	DllCall("ReadProcessMemory", "UInt", ProcessHandle, "Ptr", MADDRESS, "Ptr", &MVALUE, "Uint",4)
        	Loop 4
            	result += *(&MVALUE + A_Index-1) << 8*(A_Index-1)
        	return, result
    }


    P/s: i cant edit my 1st post any idea why? @maddoggy00 please check this out for me i cant edit my 1st post :-?
    Last edited by taejim; 07-17-2015 at 11:26 PM.

  12. The Following User Says Thank You to taejim For This Useful Post:

    nlipica (07-18-2015)

  13. #41
    ptfock's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by taejim View Post

    P/s: i cant edit my 1st post any idea why?
    Maybe goes for approval. GJ

  14. #42
    taejim's Avatar
    Join Date
    Jul 2011
    Gender
    male
    Location
    Trove
    Posts
    301
    Reputation
    10
    Thanks
    892
    My Mood
    Devilish
    Quote Originally Posted by ptfock View Post
    Maybe goes for approval. GJ
    what do you mean?

  15. #43
    DontkiJlme's Avatar
    Join Date
    Jul 2015
    Gender
    female
    Posts
    3
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by taejim View Post
    Okay ppl so this is my new code im have been working on, it is much shorter and 3 mode combine, it should be better than Zog's fishing script that i used before

     

    Water, Choco, Lava all-in-one:
    Code:
    #WinActivateForce
    
    Numpad6::
    	WinGet, pidn, PID, A
    	pid := pidn
    	WinGet, hwnds, ID, A
    	Handle := hwnds
    	Lure := 9999
    	Base := getProcessBaseAddress()
    	WaterAddress := GetAddressWater(Base,0x009570DC) 
    	LavaAddress := GetAddressLava(Base,0x009570DC) 
    	ChocoAddress := GetAddressChoco(Base,0x009570DC) 
    	
    	LureCount := 0
    	Loop %Lure%
    	{
    		LureCount := LureCount +1
    		ControlSend, , {c down}, ahk_pid %pid%
    		Sleep, 86
    		ControlSend, , {c up}, ahk_pid %pid%
    		Sleep, 500
    		ControlSend, , {f down}, ahk_pid %pid%
    		Sleep, 86
    		ControlSend, , {f up}, ahk_pid %pid%
    		Catch := 0
    		PoleCheck := 40
    
    		Loop  
    		{
    			If (Catch = 1)
    			{	
    				break
    			}
    			else
    			{
    				If (PoleCheckN = PoleCheck)
    				{
    					ControlSend, , {f down}, ahk_pid %pid%
    					Sleep, 86
    					ControlSend, , {f up}, ahk_pid %pid%
    					LureCount := 0
    				}
    				else
    				{
    				}
    				CaughtWater := ReadMemory(WaterAddress)
    				CaughtLava := ReadMemory(LavaAddress)
    				CaughtChoco := ReadMemory(ChocoAddress)
    				If (CaughtWater = 1 or CaughtLava = 1 or CaughtChoco = 1)
    				{
    					ControlSend, , {f down}, ahk_pid %pid%
    					Sleep, 86
    					ControlSend, , {f up}, ahk_pid %pid%
    					Random, Wait, 2000, 3500
    					Sleep, %Wait%
    					Catch := 1
    				}
    				else 
    				{
    					PoleCheckN := PoleCheckN +1
    					Sleep, 1000
    				}
    			}
    		}
    	}
    ExitApp
    
    Numpad7::
    ExitApp
    
    GetAddressWater(Base, Address)
    {
        pointerBase := base + Address
        y1 := ReadMemory(pointerBase)
        y2 := ReadMemory(y1 + 0x144)
        y3 := ReadMemory(y2 + 0xe4)
        Return WaterAddress := (y3 + 0x70)   
    }
    
    GetAddressLava(Base, Address)
    {
        	pointerBase := base + Address
        	y1 := ReadMemory(pointerBase)
        	y2 := ReadMemory(y1 + 0x144)
        	y3 := ReadMemory(y2 + 0xe4)
        	Return LavaAddress := (y3 + 0x514) 
    }
    
    GetAddressChoco(Base, Address)
    {
        	pointerBase := base + Address
        	y1 := ReadMemory(pointerBase)
        	y2 := ReadMemory(y1 + 0x144)
        	y3 := ReadMemory(y2 + 0xe4)
        	Return ChocoAddress := (y3 + 0x2c0) 
    }
    
    getProcessBaseAddress()
    {
        	Global Handle
        	return DllCall( A_PtrSize = 4
                                ? "GetWindowLong"
                                : "GetWindowLongPtr"
                            , "Ptr", Handle
                            , "Int", -6
                            , "Int64") ; Use Int64 to prevent negative overflow when AHK is 32 bit and target process is 64bit
         	; If DLL call fails, returned value will = 0
    }   
    
    ReadMemory(MADDRESS)
    {
        	Global pid
        	VarSetCapacity(MVALUE,4,0)
        	ProcessHandle := DllCall("OpenProcess", "Int", 24, "Char", 0, "UInt", pid, "UInt")
        	;DllCall("ReadProcessMemory","UInt",ProcessHandle,"UInt",MADDRESS,"Str",MVALUE,"UInt",4,"UInt *",0)
        	DllCall("ReadProcessMemory", "UInt", ProcessHandle, "Ptr", MADDRESS, "Ptr", &MVALUE, "Uint",4)
        	Loop 4
            	result += *(&MVALUE + A_Index-1) << 8*(A_Index-1)
        	return, result
    }


    P/s: i cant edit my 1st post any idea why? @maddoggy00 please check this out for me i cant edit my 1st post :-?
    Create program autohotkey pleeeeease ) and i like you

  16. #44
    ptfock's Avatar
    Join Date
    Jul 2015
    Gender
    male
    Posts
    72
    Reputation
    10
    Thanks
    4
    Quote Originally Posted by taejim View Post
    what do you mean?
    Posts with code or wtvr, go for approval. Means admins need to approve it before getting public. To reduce virus spread and fake posts

  17. #45
    coolshyguyhere's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    15
    Reputation
    10
    Thanks
    2
    Call me stupid, but I really can't figure out how to get this to work. I'm a noob with no experience with AHK and have no idea how to set this up.

    At this point this is how i set it up

    1- I downloaded Trove
    2- I downloaded AHK
    3- I opened up notepad, copied and pasted the updated code above this post and saved the notepad document as ****.ahk
    4- I loaded up Trove, got a fishing rod, lures and a bunch of fish in my inventory
    5- I then proceeded to load the script from desktop, by right clicking and selecting "open with > Autohotkey Unicode 64bit"
    6- I go back into the game and make sure my Numpad is on, then proceed to push 6
    7- I toss my line into the water by hitting "F", I wait, and Wait.. lure goes down, nothing happens.

    What am I doing wrong here ? I can't get this to work for me.

  18. The Following User Says Thank You to coolshyguyhere For This Useful Post:

    willwill173 (07-23-2015)

Page 3 of 15 FirstFirst 1234513 ... LastLast

Similar Threads

  1. [Solved] rs fish bot!
    By bgs twinz in forum Runescape Help
    Replies: 2
    Last Post: 08-23-2011, 06:28 PM
  2. [Solved] fishing bot
    By devlinr in forum Vindictus Help
    Replies: 6
    Last Post: 08-19-2011, 06:30 PM
  3. [Help] Is It Possible To Get Fish Bots And Auto Bots?
    By mystery2k10 in forum Metin 2 Hacks
    Replies: 0
    Last Post: 04-20-2011, 06:12 AM
  4. [Request] Oz world Fishing bot
    By devase in forum Hack Requests
    Replies: 2
    Last Post: 03-18-2011, 08:07 PM
  5. Is there a fish bot?
    By DRT94 in forum World of Warcraft Hacks / Bots
    Replies: 2
    Last Post: 03-17-2010, 10:26 AM