CreateTimerDialogBJ

Parameters
t timer
title string
return type
timerdialog
Source code
function CreateTimerDialogBJ takes timer t, string title returns timerdialog
    set bj_lastCreatedTimerDialog = CreateTimerDialog(t)
    call TimerDialogSetTitle(bj_lastCreatedTimerDialog, title)
    call TimerDialogDisplay(bj_lastCreatedTimerDialog, true)
    return bj_lastCreatedTimerDialog
endfunction
Source
Blizzard.j
wc3modding.com
CreateTimerDialogBJ