Advertisement
Guest User

Macro opieop

a guest
Dec 26th, 2014
8,250
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1.  
  2.  
  3.  
  4. F2::Remaining() ;
  5. F3::OosCommand() ;
  6. F4::CheckItemLevel() ;
  7. XButton1::FastLogOut() ;
  8.  
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. CheckItemLevel(){
  16. BlockInput On
  17. Send {LButton}
  18. Send {Enter}
  19. Sleep 2
  20. Send /itemlevel
  21. Send {Enter}
  22. Sleep, 75
  23. Send {LButton}
  24. BlockInput Off
  25. return
  26. }
  27.  
  28. OosCommand(){
  29. BlockInput On
  30. Send {Enter}
  31. Sleep 2
  32. Send /oos
  33. Send {Enter}
  34. BlockInput Off
  35. return
  36. }
  37.  
  38. Remaining(){
  39. BlockInput On
  40. Send {Enter}
  41. Sleep 2
  42. Send /remaining
  43. Send {Enter}
  44. Sleep, 75
  45. BlockInput Off
  46. return
  47. }
  48.  
  49. FastLogOut(){
  50.  
  51. WinActivate
  52.  
  53. BlockInput On
  54.  
  55. SendInput, {Esc}
  56.  
  57. WinGetPos,,,Width,Height,A
  58.  
  59. X := (Width / 2)
  60.  
  61. Y := Height * .44
  62.  
  63. MouseClick, Left, 959, 432, 1, 1
  64.  
  65. Sleep, 20
  66.  
  67. WinGetPos,,,Width,Height,A
  68.  
  69. X := (Width / 2)
  70.  
  71. Y := Height * .44
  72.  
  73. MouseClick, Left, 959, 432, 1, 1
  74.  
  75. BlockInput Off
  76. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement