Advertisement
Guest User

Untitled

a guest
Feb 17th, 2016
514
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. #NoEnv
  2. #Warn
  3. SendMode Input
  4. ;SendMode Play
  5. SetWorkingDir %A_ScriptDir%
  6. #InstallMouseHook
  7. #InstallKeybdHook
  8. #MaxThreadsBuffer on
  9. #MaxHotkeysPerInterval 999
  10. #MaxThreadsPerHotkey 2
  11. #IfWinActive, ahk_class CryENGINE
  12.  
  13. HUD = 0
  14. toggle = 0
  15.  
  16. XButton1:: ;Define button used, this is "back" on mouse
  17. Toggle := !Toggle
  18. While Toggle{
  19. sendinput, {4 down} ;uses weapon group 4
  20. sleep 150 ;duration that flamers are on.
  21. sendinput, {4 up}
  22. sleep 250 ;duration that flamers are off.
  23. sendinput, {4 down}
  24. sleep 150
  25. sendinput, {4 up}
  26. sleep 250
  27. }
  28. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement