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

◆ MessageToOwnerAction()

void InventoryItem::MessageToOwnerAction ( string text)
inlineprotected

Send message to owner player in yellow color.

Возвращает
void
item_stone.MessageToOwnerAction("Some Action Message");

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

2721 {
2722 PlayerBase player = PlayerBase.Cast(this.GetHierarchyRootPlayer());
2723
2724 if (player)
2725 {
2726 player.MessageAction(text);
2727 }
2728 }