Learning just to do simple scripts, was wondering how do I make it do repeated keystrokes for a certain amount of time for 1 specific key? I've tried to manually enter commands with delays, but its almost impossible to nail it down to do the same thing for exactly 20 secs.
Example:
I want to make ACTool push leftclick on the mouse repeatedly over and over for 20 secs.
This is what I have so far, and it works for one leftclick (attacks with wep)
SetActiveWindow insertgamenamehere
Delay 2000
keys g
delay 2000
LeftClick
delay 20000
end
Instead of having it just left click once, how do I modify that to have it leftclick over and over for the 20 secs duration?
