Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- HotKeySet("!x", "ToggleSpam")
- HotKeySet("+{ESC}", "EndSpam")
- Global $x
- MsgBox(0, "MouseSpaz", "Alt+X Starts the spaz (press both keys with your left thumb)" & @LF & @LF & "Pressing Alt+X again will stop the spaz" & @LF & @LF & "Shift+Esc will quite the program")
- While 1
- While $x
- MouseClick("primary")
- WEnd
- WEnd ;FUNCTIONS
- Func ToggleSpam()
- $x = Not $x
- EndFunc ;==>ToggleSpamFunc
- Func EndSpam()
- Exit
- EndFunc ;==>EndSpam
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement