Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- ;
- ;Program Name by Noahc3
- ;Additional Credits
- ;Built with Autohotkey 1.1.22.09
- ;Program Version
- ;
- ;Source Code available at [Link]
- ;
- #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
- SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
- SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
- r::
- Toggle := !Toggle
- While Toggle{
- MouseGetPos, mouseX, mouseY
- MouseMove, mouseX + 250, mouseY - 0
- MouseClick L
- MouseMove, mouseX - 100, mouseY - 0
- MouseMove, mouseX - 50, mouseY + 15
- MouseClick L
- ;reset to original position each time
- MouseMove, originalMouseX, originalMouseY
- }
- While !Toggle{
- ;always get the mouse original pos when not doing the clicky
- MouseGetPos, originalMouseX, originalMouseY
- }
- return
- ;safety mechanisms
- ]::
- reload
- return
- [::
- ExitApp
- return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement