- Joined
- May 24, 2016
- Messages
- 339
Code:
globals
timer T
integer ID
endglobals
function Rain_Loop takes nothing returns nothing
set T = GetExpiredTimer()
set ID = GetHandleId(T)
... actions
call FlushChildHashtable(Hash,ID)
call PauseTimer(T)
call DestroyTimer(T)
endfunction