BJDebugMsg
- Parameters
-
msg string
- comment
- patch
1.00
- Source
- Blizzard.j
- return type
nothing
- Source code
function BJDebugMsg takes string msg returns nothing local integer i = 0 loop call DisplayTimedTextToPlayer(Player(i),0,0,60,msg) set i = i + 1 exitwhen i == bj_MAX_PLAYERS endloop endfunction