PauseTimerBJ

Parameters
pause boolean
whichTimer timer
return type
nothing
Source code
function PauseTimerBJ takes boolean pause, timer whichTimer returns nothing
    if pause then
        call PauseTimer(whichTimer)
    else
        call ResumeTimer(whichTimer)
    endif
endfunction
Source
Blizzard.j
wc3modding.com
PauseTimerBJ