Advertisement
Guest User

Untitled

a guest
Nov 18th, 2018
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. #NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
  2. #Warn ; Enable warnings to assist with detecting common errors.
  3. SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
  4. SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.
  5.  
  6. f12::
  7. Suspend
  8. return
  9.  
  10. ; Activate with shift + q
  11. +q::
  12.     Loop, 640
  13.     {
  14.         MouseClick, left, 115, 140
  15.         Sleep 10
  16.         MouseClick, left, 1795, 110
  17.         Sleep 10
  18.         MouseClick, left, 1795, 150
  19.         Sleep 10
  20.     }
  21. return
  22.  
  23. ; Kill process with CTRL + q
  24. ^q::ExitApp
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement