Advertisement
Guest User

Poe Macros

a guest
Dec 19th, 2014
268
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.78 KB | None | 0 0
  1. F2::OosCommand() ; Assign F2 to OosCommand
  2. F4::FastLogOut() ; Assign F4 to Logout
  3. F6::Remaining() ; Assign to check remaining monsters
  4. F7::CheckItemLevel() ; Assign F3 to Check item level
  5.  
  6. OosCommand(){
  7. BlockInput On
  8. sendinput {Enter}/oos{Enter}
  9. BlockInput Off
  10. return
  11. }
  12.  
  13.  
  14. CheckItemLevel(){
  15. BlockInput On
  16. sendinput {LButton}
  17. sendinput {Enter}
  18. Sleep 2
  19. sendinput /itemlevel
  20. sendinput {Enter}
  21. Sleep, 75
  22. sendinput {LButton}
  23. BlockInput Off
  24. return
  25. }
  26.  
  27.  
  28. FastLogOut(){
  29. BlockInput On
  30. SetDefaultMouseSpeed 0
  31. sendinput {esc}
  32. MouseClick, left, 796, 355, 1, 1
  33. Sleep 5
  34. sendinput {LButton}
  35. Sleep 5
  36. sendinput {LButton}
  37. BlockInput Off
  38. return
  39. }
  40.  
  41.  
  42. Remaining(){
  43. BlockInput On
  44. sendinput {Enter}
  45. Sleep 2
  46. sendinput /remaining
  47. sendinput {Enter}
  48. BlockInput Off
  49. return
  50. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement