The search keyword must be a single word (no spaces).

Function DisplayTimedTextToForce

Line
1662
Location
blizzard.j
Constant?
no
Type
function
Arguments
force toForce, real duration, string message
Returns
nothing
1662
function DisplayTimedTextToForce takes force toForce, real duration, string message returns nothing
1663
    if (IsPlayerInForce(GetLocalPlayer(), toForce)) then
1664
        // Use only local code (no net traffic) within this block to avoid desyncs.
1665
        call DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, duration, message)
1666
    endif
1667
endfunction