Last active
August 29, 2015 14:01
-
-
Save mrjohannchang/de83dd1e735946347720 to your computer and use it in GitHub Desktop.
Clicks on mouse button down
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
#SingleInstance force | |
Hotkey, *~$LButton, LButtonLabel | |
return | |
LButtonLabel: | |
Loop | |
{ | |
if (!GetKeyState("ScrollLock", "T") or !GetKeyState("LButton", "P")) | |
{ | |
break | |
} | |
click | |
sleep 20 | |
} | |
return |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment