Code: Select all
HotKey, LButton, Off ;Initially, the Fast Fire part is deactivated
Return ;End of Auto-execute Section https://autohotkey.com/docs/Scripts.htm#auto
/::suspend
F8::Hotkey, LButton, % (Toggle := !Toggle) ? "On" : "Off"
LButton:: ;Fast Fire part
SetMouseDelay 20
While GetKeyState("LButton","P")
Click
Return
-- I use this script for Rapid LButton clicks but I want to add 3 other buttons that will turn it "On" and 1 other button that will turn it "Off".
For example: When I press "9" it will turn it off or pause it (whatever is faster).
When I press "0,1,2" it will turn it "On"
Please any help! Thank you