Advertisement
Guest User

Untitled

a guest
Apr 10th, 2019
232
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $F1::
  2. {
  3.   HeavyAttack:=!HeavyAttack
  4.  
  5.   if (HeavyAttack)
  6.   {
  7.     SetTimer, HeavyAttack, 350
  8.   } else {
  9.     SetTimer, HeavyAttack, Delete
  10.   }
  11. }
  12. return
  13.  
  14. HeavyAttack:
  15.  Send {LButton Down}
  16.   SetTimer, HeavyAttack, Off
  17.   Sleep, 1700
  18.   Send {LButton Up}
  19.   SetTimer, HeavyAttack On
  20. return
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement