Advertisement
Guest User

Untitled

a guest
Mar 24th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.82 KB | None | 0 0
  1. #IfWinActive, Path of Exile
  2. {
  3. ; Tasten die durchs Makro ausgelöst werden
  4. ; Für Tasten wie F-Tasten oder Enter
  5. ; hier gucken: https://autohotkey.com/docs/commands/Send.htm#keynames
  6. t1 = 1
  7. t2 = 2
  8. t3 = 3
  9. t4 = 4
  10. t5 = 5
  11.  
  12. ; Taste zum starten des Markos
  13. ; Für Tasten wie F-Tasten oder Enter
  14. ; hier gucken: https://autohotkey.com/docs/KeyList.htm
  15. 8::
  16. Random, rand, 20, 60 ; erster Sleep-Timer 20-60ms
  17. Random, rand2, 20, 60 ; zweiter Sleep-Timer 20-60ms
  18. Random, rand3, 20, 60 ; dritter Sleep Timer 20-60ms
  19. if (rand < 41) {
  20. SendInput, %t1%
  21. sleep, rand
  22. SendInput, %t2%
  23. sleep, rand2
  24. SendInput, %t3%
  25. sleep, rand3
  26. SendInput, %t4%
  27. sleep, rand
  28. SendInput, %t5%
  29. } else {
  30. SendInput, %t2%
  31. sleep, rand
  32. SendInput, %t1%
  33. sleep, rand2
  34. SendInput, %t3%
  35. sleep, rand3
  36. SendInput, %t5%
  37. sleep, rand
  38. SendInput, %t4%
  39. }
  40. return
  41. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement