CreateTimerBJ
- Parameters
-
periodic boolean
timeout real
- comment
- patch
-
1.00
- Source
- Blizzard.j (suggest an edit or discuss on Github)
- return type
-
timer
- Source code
-
function CreateTimerBJ takes boolean periodic, real timeout returns timer set bj_lastStartedTimer = CreateTimer() call TimerStart(bj_lastStartedTimer, timeout, periodic, null) return bj_lastStartedTimer endfunction