AHK Script megathread
Post ahk scripts here using the code tags.
Here is a simple bhop script:
Here is a simple bhop script:
Code:
F11:: Hotkey, *~$Space, Toggle
End::
ExitApp
*~$Space::
Sleep 5
Loop
{
GetKeyState, SpaceState, Space, P
Sleep 2
If SpaceState = U
break
Send, {Blind}{Space}
}
Return



