ClearTextMessagesBJ
- Parameters
-
toForce force
Target players who are part of this force
- comment
Clears text messages for all players in specified force.
- note
See
ClearTextMessages
.- patch
1.00
- Source
- Blizzard.j
- return type
nothing
- Source code
function ClearTextMessagesBJ takes force toForce returns nothing if (IsPlayerInForce(GetLocalPlayer(), toForce)) then // Use only local code (no net traffic) within this block to avoid desyncs. call ClearTextMessages() endif endfunction