Howdy, Stranger!

It looks like you're new here. If you want to get involved, click one of these buttons!

clicker and key sender

edited April 2015 in General
so here are some simple autohotkey scripts to send key presses and such to windows

first is the auto clicker - good for repetitive games.
SetTimer Click, 5000
F8::Toggle := !Toggle

Click:
If (!Toggle)
Return
Click
return


second sends key presses to an inactive window.
SetTimer Space, 5000
F8::Toggle := !Toggle

Space:
If (!Toggle)
Return
ControlSend,,{space}, window name ,
Return


and to take it one step further add a variable delay, that way it cant be matched on timer

SetTimer Space, 200
F8::Toggle := !Toggle

Space:
If (!Toggle)
Return
random, delay, 4800, 5200
ControlSend,,{space}, window name ,
sleep, %delay%
Return
Sign In or Register to comment.