Created
April 16, 2020 06:28
-
-
Save cornernote/11e15d6a93e5cc18e6ca0b4712ed4228 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
$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