CreateTimerBJ

Parameters
periodic boolean
timeout real
comment
patch

1.00

Source
Blizzard.j
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