Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1. ;#IfWinActive, Path of Exile
  2.  
  3. F4::oos()
  4. F5::oos()
  5. F6::oos()
  6.  
  7. ;F7::Suspend
  8. F8::ExitApp
  9.  
  10. F3::logout()
  11. ;MButton::logout()
  12.  
  13. F2::remaining()
  14.  
  15. remaining() {
  16. IfWinActive Path of Exile
  17. {
  18. BlockInput On
  19. SendInput, {Enter}
  20. Sleep 2
  21. SendInput, {/}remaining
  22. SendInput, {Enter}
  23. BlockInput Off
  24. }
  25. return
  26. }
  27.  
  28. oos() {
  29. IfWinActive Path of Exile
  30. {
  31. SendInput, {Enter}
  32. sleep, 20
  33. SendInput, {/}oos
  34. SendInput, {Enter}
  35. return
  36. }
  37. }
  38.  
  39. logout() {
  40. IfWinActive Path of Exile
  41. {
  42. BlockInput On
  43. MouseClick, Left, 721, 58, 2, Fast ;(1) click top-middle of the screen to close chat window if it's opened
  44. Sleep 3
  45. SendInput, {F7} ;(2) press the in-game hotkey "Close all panels"
  46. Sleep 3
  47. SendInput, {Esc} ;(3) press Esc to open menu
  48. Sleep 3
  49. MouseClick, Left, 721, 335, 2, Fast ;(4) click fast several times (3rd number) on the logout
  50. BlockInput Off
  51. return
  52. }
  53. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement