Advertisement
Guest User

Untitled

a guest
Aug 15th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. SetWorkingDir %A_ScriptDir%
  2. Run *RunAs "%A_ScriptDir%\POE-TradeMacro-2.3.9\Run_TradeMacro.ahk"
  3.  
  4. Remaining()
  5. {
  6.     BlockInput On
  7.     SendInput {Shift Up}
  8.     SendInput {Enter}
  9.     SendInput {/}remaining
  10.     SendInput {Enter}
  11.     BlockInput Off
  12.     Return
  13. }
  14.  
  15. Hideout()
  16. {
  17.     BlockInput On
  18.     SendInput {Shift Up}
  19.     SendInput {Enter}
  20.     SendInput {/}hideout
  21.     SendInput {Enter}
  22.     BlockInput Off
  23.     Return
  24. }
  25.  
  26. #IfWinActive, Path of Exile
  27.  
  28. $*F2::Remaining()
  29. $*F3::Hideout()
  30. $*F4::Suspend
  31.  
  32. ;Shift Hold Movement Skills
  33. *Q::SendInput {Shift Down}{Q Down}
  34. *Q Up::SendInput {Q Up}{Shift Up}
  35.  
  36. *W::SendInput {Shift Down}{W Down}
  37. *W Up::SendInput {W Up}{Shift Up}
  38.  
  39. *E::SendInput {Shift Down}{E Down}
  40. *E Up::SendInput {E Up}{Shift Up}
  41.  
  42. *R::SendInput {Shift Down}{R Down}
  43. *R Up::SendInput {R Up}{Shift Up}
  44.  
  45. *XButton1::SendInput {Shift Down}{XButton1 Down}
  46. *XButton1 Up::SendInput {XButton1 Up}{Shift Up}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement