Are local timers MUI?
Like i create a timer
If in those 5 seconds, another timer starts from the same trigger. Will the first one be executed then the second?
Like i create a timer
JASS:
local timer t
set t = CreateTimer()
call TimerStart(t,5,true,function knockback)
If in those 5 seconds, another timer starts from the same trigger. Will the first one be executed then the second?