01.10.2017, 20:16
Yes and use "stop" to stop the timer.
repeat
This calls the timer repeatedly after the delay defined on the timer. This is similar to tasks but you can stop the timer again:
repeat
This calls the timer repeatedly after the delay defined on the timer. This is similar to tasks but you can stop the timer again:
Код:
main() { repeat DelayedFunction(42); new Timer:x = repeat DelayedFunction(42); stop x; }