Created
May 23, 2020 04:53
-
-
Save cornernote/ab951ce85f09c283a7972fcc36900951 to your computer and use it in GitHub Desktop.
Auto-It Auto Clicker
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('^o', 'Click') | |
Func Click() | |
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