Hi coders
im codeing a simple Fishing Bot addware for KaRmers Metin2mod.tk
Whats the add for?
starting the fishing function, quitts it after ca 1 minute
changes the fishing delay and the fishing rate randomly to 1.91- 2.79
the problem is..... when the bot klicks in the first box and enters the new value, the bot just doesnt go ahead with klicking inside the next box...
how can tell me please what i have to change or to do?!!!!
thats the code of my bot....
#RequireAdmin
HotKeySet("{f7}","jie")
HotKeySet("{f6}","jia")
HotKeySet("{f8}","njie")
sleep(2500)
send("{f7}")
Func jie()
While 1
MouseClick("left",704,493,2,0) ;react delay klicken
sleep(700)
send("{backspace 15}") ;zahl löschen
$zufallszahl = Random(1.90,2.77) ;random zahl erstellen
$zufallszahl = Round($zufallszahl, +2) ;auf 2 stellen kürzen
Send($zufallszahl) ;zahl senden
sleep(700)
send("{f6}")
WEnd
EndFunc
func jia()
While 1
;~ sleep(700)
;~ WinActivate("METIN2")
;~ sleep(1200)
MouseClick("left",703,522,2,0) ;fishing delay klicken
sleep(700)
send("{backspace 15}") ;zahl löschen
$zufallszahl = Random(1.90,2.77) ;random zahl erstellen
$zufallszahl = Round($zufallszahl, +2) ;auf 2 stellen kürzen
Send($zufallszahl) ;zahl senden
sleep(700)
WEnd
EndFunc
Func njie()
Exit
EndFunc