Advertisement
Guest User

Untitled

a guest
May 24th, 2015
201
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. - Autoloot:
  2.  
  3. #SingleInstance force
  4. #Persistent
  5.  
  6. SetTimer, lootStuff, 250
  7. return
  8.  
  9. lootStuff:
  10. IfWinActive ahk_class ArenaNet_Dx_Window_Class
  11. {
  12. SendInput {F10}
  13. }
  14. return
  15.  
  16.  
  17. - Click Constant:
  18.  
  19. F6::
  20.  
  21. Loop {
  22. Click
  23. }
  24.  
  25. F7::pause
  26.  
  27.  
  28. - Click while press:
  29.  
  30. $F6::
  31. while GetKeyState("F6", "P")
  32. {
  33. Click
  34. }
  35. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement