Skip to content

Instantly share code, notes, and snippets.

@cornernote
Created April 16, 2020 06:28
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/11e15d6a93e5cc18e6ca0b4712ed4228 to your computer and use it in GitHub Desktop.
Save cornernote/11e15d6a93e5cc18e6ca0b4712ed4228 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(100)
WEnd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment