Skip to content

Instantly share code, notes, and snippets.

@cornernote
Last active September 29, 2019 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cornernote/4253f47402ce14617b73680e92a20e96 to your computer and use it in GitHub Desktop.
Save cornernote/4253f47402ce14617b73680e92a20e96 to your computer and use it in GitHub Desktop.
$currentClicking = False
HotKeySet('^x', 'End')
Func End()
Exit
EndFunc
HotKeySet('0', 'Farm')
Func Farm()
If $currentClicking Then
$currentClicking = False
Else
$currentClicking = True
EndIf
EndFunc
While True
If $currentClicking Then
MouseClick("left")
EndIf
Sleep(500)
WEnd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment