Advertisement
Guest User

Hotkey

a guest
Dec 21st, 2014
183
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. F2::Oos() ; Binds Forward Mouse button to /oss
  2. F5::FastLogOut() ; Binds Mouse Back Button to Logout
  3. F3::Remaining() ; Bind F2 for /remaining command
  4. F4::Itemlevel() ;
  5. Home::Hideout() ; Binds Hideout to home key
  6. FastLogOut() {
  7.     if WinActive("Path of Exile")
  8.     {          
  9.             BlockInput On
  10.             SetDefaultMouseSpeed 0
  11.             Send {esc}
  12.             WinGetPos,,,Width,Height,A
  13.             x := Width / 2
  14.             y := Height * .43
  15.             MouseClick, left, x, y, 1, 1
  16.             BlockInput Off
  17.     }
  18.         return    
  19. }
  20.  
  21. Itemlevel(){
  22.     if WinActive("Path of Exile")
  23.     {
  24.             BlockInput On
  25.             Send {Enter}
  26.             Send /itemlevel
  27.             Send {Enter}
  28.             BlockInput Off
  29.     }
  30.         return
  31. }
  32.  
  33.  
  34. Oos(){
  35.     if WinActive("Path of Exile")
  36.     {
  37.             BlockInput On
  38.             Send {Enter}
  39.             Send /oos
  40.             Send {Enter}
  41.             BlockInput Off
  42.     }
  43.         return
  44. }
  45.  
  46. Remaining(){
  47.     if WinActive("Path of Exile")
  48.     {
  49.             BlockInput On
  50.             Send {Enter}
  51.             Send /remaining
  52.             Send {Enter}
  53.             BlockInput Off
  54.     }
  55.         return
  56. }
  57.  
  58. Hideout(){
  59.     if WinActive("Path of Exile")
  60.     {
  61.             BlockInput On
  62.             Send {Enter}
  63.             Send /hideout
  64.             Send {Enter}
  65.             BlockInput Off
  66.     }
  67.         return
  68. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement