Advertisement
Guest User

Untitled

a guest
Oct 18th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.00 KB | None | 0 0
  1. /*
  2. AHK AutoFarmScript for LYL
  3. by PaddyMcNelly
  4. use at your own risk! you might get banned!
  5. */
  6.  
  7. ; global definitions
  8.  
  9. #MaxThreadsPerHotkey 2
  10.  
  11. ; check if arma is activ and if it's 32bit or 64 bit!
  12. ; nvm, doesnt matter if its 32 or 64 bit ;)
  13.  
  14. #IfWinActive, ahk_class Arma 3
  15.  
  16. ; check if f1 or f4 pressed ( farming by pickaxe or by hand )
  17.  
  18.  
  19. !F4::
  20. SetTimer, PressTheKey1, 2200
  21. TrayTip, LYL Happy Farming, F4 Farmen wurde gestartet, 2, 17
  22. Return
  23.  
  24. PressTheKey1:
  25. Send, {F4}
  26. Return
  27.  
  28. !F1::
  29. SetTimer, PressTheKey2, 2200
  30. TrayTip, LYL Happy Farming, F1 Farmen wurde gestartet, 2, 17
  31. Return
  32.  
  33. PressTheKey2:
  34. Send, {F1}
  35. Return
  36.  
  37. Numpad8::
  38. Reload
  39. TrayTip, LYL Happy Farming, Farmen wurde beendet, 2, 17
  40. Return
  41.  
  42. !w::
  43. Send, {w down}
  44. return
  45.  
  46. !F9::
  47. SetTimer, PressTheKey3, 700
  48. Return
  49.  
  50. PressTheKey3:
  51. Send, {WheelDown}
  52. Sleep 100
  53. Send, {WheelDown}
  54. Sleep 100
  55. Send, {WheelDown}
  56. Sleep 100
  57. Send, {Enter}
  58. Return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement