Advertisement
Guest User

Untitled

a guest
Jan 18th, 2017
89
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.23 KB | None | 0 0
  1. #If WinActive("RuneLoader") or WinActive("Old School RuneScape") or WinActive("OSBuddy") or WinActive("OSBuddy Pro") or WinActive("Konduit")
  2.  
  3. 1:: Click right ; Right clicks using the mouse.
  4. return ; Not really necessary to include return but it ensures that multiple commands are not ran.
  5. 2:: MouseMove, 0, 72, 1, R ; Moves 72 pixels down. Used to withdraw essence from the bank.
  6. return
  7. 3:: Click ; Left clicks using the mouse.
  8. return
  9. q:: Click right
  10. return
  11. w:: MouseMove, 0, 36, 1, R ; Moves 36 pixels down. Used to empty pouches at altar.
  12. return
  13. e:: Click
  14. return
  15. ;;Teleport to castle wars
  16. t::
  17. CoordMode, mouse, Screen
  18. ToolTip
  19. SendInput {Escape}
  20. Sleep 50
  21. SendInput {F4}
  22. Sleep 50
  23. Mousemove 1689, 435 ;;POSITION OF DUELLING RING IN EQUIPMENT
  24. Sleep 50
  25. SendInput {Click Right}
  26. Sleep 150
  27. Mousemove ,0 ,55 ,0 ,R
  28. Sleep 50
  29. SendInput {Click}
  30. Sleep 150
  31. SendInput {Escape}
  32. Return
  33. ;; Teleport to duel arena
  34. 5::
  35. CoordMode, mouse, Screen
  36. ToolTip
  37. SendInput {Escape}
  38. Sleep 50
  39. SendInput {F4}
  40. Sleep 50
  41. Mousemove 1683, 437 ;;POSITION OF DUELLING RING IN EQUIPMENT
  42. Sleep 50
  43. SendInput {Click Right}
  44. Sleep 150
  45. Mousemove ,0 ,36 ,0 ,R
  46. Sleep 50
  47. SendInput {Click}
  48. Sleep 150
  49. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement