Skip to content

Instantly share code, notes, and snippets.

@timconradinc
Created September 25, 2013 15:15
Show Gist options
  • Save timconradinc/6701146 to your computer and use it in GitHub Desktop.
Save timconradinc/6701146 to your computer and use it in GitHub Desktop.
HotKeySet("{ESC}", "Terminate")
While 1
MouseMove(Random(211,378),Random(464,592))
Local $max = Random(1,50)
Local $i = 1
While $i < $max
MouseDown("left")
MouseUp("left")
$i = $i + 1
Wend
Wend
Func Terminate()
Exit 0
EndFunc
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment