Advertisement
Aixler

Path of Exile

Oct 28th, 2013
295
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. F1::SendOosCommand() ; Assign F1 to toggle oos command
  2. F4::FastLogOut1() ; Assign F4 to Logout
  3.  
  4. F6::Remaining() ; Assign F6 to check remaining monsters
  5. F7::CheckItemLevel() ; Assign F7 to Check item level
  6.  
  7. ;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
  8.  
  9. CheckItemLevel(){
  10. BlockInput On
  11. Send {LButton}
  12. Send {Enter}
  13. Sleep 2
  14. SendInput /itemlevel
  15. Send {Enter}
  16. Sleep 75
  17. Send {LButton}
  18. BlockInput Off
  19. }
  20.  
  21. SendOosCommand(){
  22. BlockInput On
  23. Send {Enter}
  24. Sleep 2
  25. SendInput /oos
  26. Send {Enter}
  27. BlockInput Off
  28. }
  29.  
  30. FastLogOut1(){
  31. BlockInput On
  32. Send {esc}
  33. Click 840, 420
  34. BlockInput Off
  35. }
  36.  
  37. Remaining(){
  38. BlockInput On
  39. Send {Enter}
  40. Sleep 2
  41. SendInput /remaining
  42. Send {Enter}
  43. BlockInput Off
  44. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement