Guest User

Untitled

a guest
Dec 15th, 2017
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. ; Contact me for any questions on Reddit: /u/xegaJ
  2. ; This script is used to make Oak Dungeon Doors.
  3. ; Uses q, w & e to build the Oak Dungeon Doors + a, s & d to remove them. These keys can be changed to suit your preferences.
  4.  
  5. #If WinActive("RuneLoader") or WinActive("Old School RuneScape") or WinActive("OSBuddy") or WinActive("OSBuddy Pro") ;
  6.  
  7. q:: Click right
  8. return
  9.  
  10. w:: MouseMove, 0, 54, 1, R
  11. return
  12.  
  13. e:: Click
  14. return
  15.  
  16. a:: Click right
  17. return
  18.  
  19. s:: MouseMove, 0, 54, 1, R
  20. return
  21.  
  22. d:: MouseMove, 0, 54, 1, R
  23. return
  24.  
  25. f:: Click
  26. return
  27.  
  28. `:: ; Pressing ` (~/console key) turns the AHK icon in your system tray to red to let you know that's it's suspended.
  29. Suspend, Permit
  30. if not A_IsSuspended
  31. {
  32. Menu, Tray, Icon, %A_AhkPath%, 5, 1
  33. Suspend, On
  34. }
  35. else
  36. {
  37. Menu, Tray, Icon, %A_AhkPath%, 1, 0
  38. Suspend, Off
  39. }
  40. return
Advertisement
Add Comment
Please, Sign In to add comment