Is it possible to interrupt the disabler for e.g. 1500 to press the trigger button multiple times to trigger another specific button before the disabler becomes active and plays the rest of the script?
Code: Select all
F5::
;-----------------------------
if disabler
return
else
disabler := true
SetTimer, cooldown, -6500
;-----------------------------
Send, {4 down}
Sleep, 100
Send, {4 up}
Sleep, 1000
;-----------------------------
BlockInput, MouseMove
Sleep, 100
Send, {E down}
Sleep, 100
MouseMove, 830, 500
Sleep, 100
Send, {E up}
BlockInput, MouseMoveOff
Sleep, 100
;-----------------------------
Send, {RButton down}
Sleep, 100
Send, {RButton up}
Sleep, 5500
;-----------------------------
Send, {1 down}
Sleep, 100
Send, {1 up}
return
;-----------------------------
cooldown:
disabler := false
return