Here are some hacks ive been making:
Fishing Trainer:
Makes fishes not pull at all
Makes all cast of your rod full power
http://www.mediafire.com/?9ng95igdnjh
A programmer by the name of
Labyrnth also made a auto it script that can make the bot auto fish , aswell as being able to attach cheat engine and enable speedhack for fast full buckets of fish.
His script can be downloaded here:
http://www.megaupload.com/?d=NG0V08L6
And this is the Source:
PHP Code:
#Include <Misc.au3>
Opt("WinWaitDelay", 100)
Opt("WinTitleMatchMode", 2) ;1=start, 2=subStr, 3=exact, 4=advanced, -1 to -4=Nocase
Opt("WinDetectHiddenText", 1)
Opt("PixelCoordMode", 2) ;1=absolute, 0=relative, 2=client
Opt("MouseCoordMode", 2) ;1=absolute, 0=relative, 2=client
WinWait("Gaia Online Fishing Hack", "")
If Not WinActive("Gaia Online Fishing Hack", "") Then WinActivate("Gaia Online Fishing Hack", "")
WinWaitActive("Gaia Online Fishing Hack", "")
Sleep(100)
$rare = 1
While $rare = 1
;~ Hold End Key to Stop
MouseClick("left", 546, 241, 1)
Sleep(900)
If _IsPressed("23") Then $rare = 0
WEnd
MsgBox(0, "FisherBot Disabled", "You turned off the Bot!")
Enjoy.
Edit , realised i forgot to include the cast power hack in the source , just add this to the timer:
PHP Code:
Call swf.SetVariable("main.fishPull", "0")
It is also possible to autofish without the window being active however the bait selection wont work atm,
PHP Code:
Private Sub Autofisher_Timer()
On Error Resume Next
Call swf.SetVariable("main.fishPull", "0")
' Call swf.SetVariable("main.displayBaitDialog", "0")
'Call swf.SetVariable("displayBaitDialog", "0")
' Call swf.SetVariable("user.baitD", "3")
' Call swf.SetVariable("baitSelected", "baitd")
Call swf.SetVariable("launchLogan", "0")
' Call swf.SetVariable("selectBait", "0")
Call swf.SetVariable("launchLoganNoBait", "0")
' Call swf.SetVariable("main.gameMode", "release") 'Fish Hack
Call swf.SetVariable("selectBait", "0")
Call swf.SetVariable("baitSelected", "baitd")
Call swf.SetVariable("DATA_UPDATE_TYPE", "3")
gamestatus = swf.GetVariable("main.gameMode")
Form1.Caption = swf.GetVariable("_xmouse")
'Form1.Caption = gamestatus
If InStr(swf.Movie, "/FISHING/") > 0 And Check3.Value = 1 Then
Select Case gamestatus
Case "none"
Call swf.SetVariable("main.gameMode", "moveBack") 'Fish Hack
Call swf.SetVariable("main.gameMode", "moveForward") 'Fish Hack
Call swf.SetVariable("main.releasePower", "200")
Call swf.SetVariable("main.gameMode", "release") 'Fish Hack
Case "Release"
Case "paused"
Call swf.SetVariable("main.gameMode", "moveBack") 'Fish Hack
Call swf.SetVariable("main.gameMode", "moveForward") 'Fish Hack
Call swf.SetVariable("main.releasePower", "200")
Call swf.SetVariable("main.gameMode", "release") 'Fish Hack
Case "inair"
End Select
'Call swf.SetVariable("main.gameMode", "moveBack") 'Fish Hack
End If
End Sub