Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;this is pretty important to note but YOU NEED AUTOHOTKEY FOR THIS TO WORK
- Toggle := 0
- F6::Exitapp ;to quit the ahk
- q:: ;toggles the script on/off
- Toggle := !Toggle
- if (Toggle)
- {
- SetTimer, ClickLoop, 33
- }
- else
- {
- SetTimer, ClickLoop, Off
- }
- return
- ClickLoop:
- Click
- return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement