Advertisement
Stub92

wall hop macro

Jun 27th, 2023
19,610
0
Never
1
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SendMode Input
  2.  
  3. SetTitleMatchMode, 2
  4.  
  5. F3::Exitapp ;if your having trouble or just want ti quit the ahk then press this
  6.  
  7. Toggle := 0
  8.  
  9. ~q:: ;toggles the script on/off
  10.     Toggle := !Toggle
  11. return
  12.  
  13. ~LButton:: ;press this for the macro to macro
  14.     if (Toggle)
  15.     {
  16.         SetDefaultMouseSpeed 1
  17.         MouseGetPos, , y
  18.         MouseMove, 600, % y
  19.         Sleep 50
  20.         MouseGetPos, , y
  21.         MouseMove, 700, % y
  22.     }
  23. return
  24.  
Advertisement
Comments
  • eeeaaaa
    36 days
    Comment was deleted
Add Comment
Please, Sign In to add comment
Advertisement