DayZ 1.27
DayZ Explorer by KGB
 
Загрузка...
Поиск...
Не найдено

◆ Message()

void ManBase::Message ( string text,
string style )
inlineprotected

colorStatusChannel colorAction colorFriendly colorImportant

См. определение в файле PlayerBase.c строка 6366

6367 {
6368 if (GetInstanceType() == DayZPlayerInstanceType.INSTANCETYPE_SERVER)
6369 {
6370 GetGame().ChatMP(this, text, style);
6371 }
6372 else
6373 {
6374 GetGame().Chat(text, style);
6375 }
6376 }
proto native void ChatMP(Man recipient, string text, string colorClass)
proto native void Chat(string text, string colorClass)
Prints text into game chat.
DayZPlayerInstanceType
defined in C++
Определения dayzplayer.c:1068
proto native DayZPlayerInstanceType GetInstanceType()
proto native CGame GetGame()

Перекрестные ссылки CGame::Chat(), CGame::ChatMP(), GetGame() и GetInstanceType().

Используется в MessageAction(), MessageFriendly(), MessageImportant() и MessageStatus().