Skip to content

Instantly share code, notes, and snippets.

@muhammetozeski
Last active March 25, 2024 13:24
Show Gist options
  • Save muhammetozeski/fc5fa179d619287ca90c3c65fbb6a8ce to your computer and use it in GitHub Desktop.
Save muhammetozeski/fc5fa179d619287ca90c3c65fbb6a8ce to your computer and use it in GitHub Desktop.
Simple click script for autohotkey
;if caps lock open and if you press numpad3 and 2 at the same time, you click continually
#if GetKeyState("Capslock", "T")
Numpad3::
while GetKeyState("Numpad3", "P")
{
while GetKeyState("Numpad2", "P")
{
Send, {Click}
}
}
return
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment