Advertisement
Guest User

Untitled

a guest
Jun 10th, 2015
799
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.34 KB | None | 0 0
  1. SetTitleMatchMode 3
  2. #IfWinActive Path of Exile
  3.  
  4. F2::AltF4() ; assign F2 to Alt+F4
  5. F3::AltF42() ; Assign F3 to Alt+F4
  6. +d::OosCommand() ; Assign Shift+d to execute the oos command
  7. F4::CheckRemaining() ; Assign F4 to Check remaining
  8. F5::CheckItemLevel() ; Assign F5 to Check item level
  9. F6::Hideout() ; Assign F5 to go to hideout
  10. F7::Map() ; Assign F7 to automessage
  11.  
  12.  
  13.  
  14. AltF4(){
  15. BlockInput On
  16. SendInput !{f4}
  17. BlockInput Off
  18. return
  19. }
  20.  
  21.  
  22.  
  23. AltF42(){
  24. BlockInput On
  25. SendInput !{f4}
  26. BlockInput Off
  27. return
  28. }
  29.  
  30.  
  31.  
  32. OosCommand(){
  33. BlockInput On
  34. SendInput {Enter}
  35. SendInput /oos
  36. SendInput {Enter}
  37. BlockInput Off
  38. return
  39. }
  40.  
  41.  
  42.  
  43. CheckRemaining(){
  44. BlockInput On
  45. SendInput {Enter}
  46. Sleep 2
  47. SendInput /remaining
  48. SendInput {Enter}
  49. Sleep, 75
  50. BlockInput Off
  51. return
  52. }
  53.  
  54.  
  55.  
  56. CheckItemLevel(){
  57. BlockInput On
  58. SendInput {Enter}
  59. Sleep 2
  60. SendInput /itemlevel
  61. SendInput {Enter}
  62. Sleep, 75
  63. BlockInput Off
  64. return
  65. }
  66.  
  67.  
  68.  
  69. Hideout(){
  70. BlockInput On
  71. SendInput {Enter}
  72. Sleep 2
  73. SendInput /hideout
  74. SendInput {Enter}
  75. Sleep, 75
  76. BlockInput Off
  77. return
  78. }
  79.  
  80.  
  81.  
  82. Map(){
  83. BlockInput On
  84. SendInput ^{Enter}
  85. Sleep 2
  86. SendInput sure just in a map. gimme a few min please
  87. SendInput {Enter}
  88. Sleep, 75
  89. BlockInput Off
  90. return
  91. }
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98. ^WheelDown::SendInput {Right}
  99. return
  100.  
  101. ^WheelUp::SendInput {Left}
  102. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement