Advertisement
Guest User

Untitled

a guest
Nov 1st, 2014
172
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  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.  
  7. #IfWinActive Elder Scrolls Online
  8.  
  9.  
  10. XButton1::
  11. Loop
  12. {
  13. GetKeyState,state,XButton1,P
  14. if state = U
  15. {
  16. Send {LButton up}
  17. break
  18. }
  19.  
  20. Send {LButton}
  21. Sleep 150,155
  22. Send {3}
  23.  
  24.  
  25. ; Timers
  26. Sleep 175,180
  27. ;Sleep 1050,1055
  28. ;Sleep 950,955
  29. ;Sleep 1250,1300
  30.  
  31.  
  32. }
  33. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement