- Joined
- Aug 7, 2013
- Messages
- 1,341
Hi,
Just curious if it's ok to use this function to do waits in the middle of functions or triggers.
Just curious if it's ok to use this function to do waits in the middle of functions or triggers.
JASS:
function RealWait takes real duration returns nothing
local real time = TimerGetRemaining(t_WAIT)
local real goal = time - duration
loop
exitwhen TimerGetRemaining(t_WAIT) < goal
call TriggerSleepAction(bj_POLLED_WAIT_INTERVAL)
endloop
endfunction