Skip to content

Instantly share code, notes, and snippets.

@mrjohannchang
Last active August 29, 2015 14:01
Show Gist options
  • Save mrjohannchang/de83dd1e735946347720 to your computer and use it in GitHub Desktop.
Save mrjohannchang/de83dd1e735946347720 to your computer and use it in GitHub Desktop.
Clicks on mouse button down
#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