So, im trying to make this thing, where it HOLDS "W" for 17 seconds, then after that HOLDS "S" for 17 seconds. then repeat. How would i do that? So far i have this, it works but it doesnt repeat.
______________________________________________
Opt('SendKeyDelay', 50); Default speed
_Send('w', 17000)
Func _Send($text, $milliseconds)
$time = TimerInit()
Do
Send($text)
Until TimerDiff($time) > $milliseconds)
EndFunc
Opt('SendKeyDelay', 50); Default speed
_Send1('s', 1