blob: 30702ff67032245c5732d82876ab13675c54ce72 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
Private["_commanderTeam","_text"];
_commanderTeam = _this;
_text = Localize "STR_WF_CHAT_AI_Commander";
if (!IsNull _commanderTeam) then {
_text = Format[localize "STR_WF_CHAT_VoteForNewCommander",name (leader _commanderTeam)];
if (group player == _commanderTeam) then {_text = localize "STR_WF_CHAT_PlayerCommander"};
};
[_text] Call TitleTextMessage;
|