How "I" dealt with finding new pointers
For all you lazy people out there that do not want to find new pointers. Plug this into your brand new ahk file and start fishing. Press o to start and p to stop. Does not work 100% of the time as you press f every 25 seconds ( this is the average time it takes ME to get a catch ). These line of codes is basically the chinese knockoff of a fishing bot.
o::
loop {
send f
sleep, 25000
send f
sleep 5000
}
p::
ExitApp
return