Skip to content

Instantly share code, notes, and snippets.

/bai.ahk Secret

Created June 29, 2016 16:06
Show Gist options
  • Save anonymous/28b8da25b00c75510aa3779000a7b015 to your computer and use it in GitHub Desktop.
Save anonymous/28b8da25b00c75510aa3779000a7b015 to your computer and use it in GitHub Desktop.
ahk for baium
#NoEnv
SendMode Input
F5:: ; F5 for start script execution
Loop
{
Send {F1} ; assuming you have "/target Angelic Vortex /target Angelic Vortex" macro at first slot of first panel
Random, t, 2, 5
Sleep, t * 1000
Send {LButton}
Random, d, 2, 5
Sleep, d * 1000
Send {LButton}
Random, v, 2, 5
Sleep, v * 1000
}
Return
F6:: ; F6 for pause script execution
If not Stop
{
Stop := True
Pause
}
Return
F8:: ; F7 for resume script execution
If Stop
{
Stop := False
Pause
}
Return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment