Need Some Help With a Script

06/27/2012 06:09 Linkzx#1
Hi I am trying to make a simple fishing bot for Graal Zodiac.

I have started to TRY and make my own I am completely new to it.
here is what I have so far.


Quote:
WinWaitActive("Blank") ;The script waits for the window named "The Game" to become active.
WinMove("blank", "", 0, 0) ;Once active it moves it to the top left of the screen.
Sleep(2000) ;Pauses for 500ms which is 1/2 a second
Send("{S}")
Sleep(500)
Send("{S}")
Sleep(500)
Send("{S}")
Ok Now what I want to try and do and bare with me is.

When I am fishing I press S wait for the splash then press S S S 3 times not super fast but fast then re cast S wait for splash then S S S.
Then move down and up with the arrow buttons.

And repeats itself Infiniti amount of times.

I have been watching tutorials online so I am still learning but could anyone help me out a bit?

Here is a pic of the splash [Only registered and activated users can see links. Click Here To Register...]
06/27/2012 08:16 genesisVI#2
use timerdiff or adlibreg, in these command u can set the time(in sec+000) and while 1 wend command 4 the looping, or refer here [Only registered and activated users can see links. Click Here To Register...]
06/27/2012 22:28 Linkzx#3
still having some trouble... How do I set the damn Keys so it ALWAYS repeats itself can U show me an example?
06/28/2012 01:09 Lumi#4
You can do Hotkeys.

PHP Code:
Hotkeyset("{F1}""_Start") ;F1 for starting the Function _Start()

Func _Start()
While 
1
    WinWaitActive
("Blank") ;The script waits for the window named "The Game" to become active.
    
WinMove("blank"""00) ;Once active it moves it to the top left of the screen.
    
Sleep(2000) ;Pauses for 500ms which is 1/2 a second
    Send
("S")
    
Sleep(500)
    
Send("S")
    
Sleep(500)
    
Send("S")
WEnd
EndFunc 
07/01/2012 06:41 Linkzx#5
Can anyone just write the script for me?
07/01/2012 10:40 Njahs#6
Quote:
Originally Posted by Linkzx View Post
Can anyone just write the script for me?
[Only registered and activated users can see links. Click Here To Register...]
07/02/2012 03:49 Linkzx#7
not to bust balls but I dont speak Russian or German Or w/e that is...
07/03/2012 14:05 Linkzx#8
no one can help me really?
07/03/2012 15:26 CantShutMyMouth#9
Man...if your script is ready but just doesn't repeat...it's pretty easy to make it reapeat for infinite times:


PHP Code:

While 1
 
////Here add yout fishbot script
Wend 
try it!
07/03/2012 19:07 Linkzx#10
Thanks.

I am having another issue.
Getting it to actually send keys it sends it once then stops.

I'm saying it pressing S key once then stops completely.
07/03/2012 21:52 CantShutMyMouth#11
Give me the sourcecode by PM
07/03/2012 22:18 Linkzx#12
WHAT is the source code I am so confused?