Created
August 20, 2015 18:19
-
-
Save matrixfox/7e56be4e162f0521edcf to your computer and use it in GitHub Desktop.
AutoHotkey RapidFire
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
#NoEnv | |
#SingleInstance force | |
SendMode Input | |
Numpad0::Suspend ; | |
Lbutton:: | |
Loop | |
{ | |
GetKeyState, state, Lbutton, P | |
if state=U | |
break | |
Sendinput {Click down} | |
Sleep 35 | |
Sendinput {Click up} | |
Sleep 35 | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment