Send message to owner player in yellow color.
- Возвращает
void item_stone.MessageToOwnerAction("Some Action Message");
См. определение в файле ItemBase.c строка 2748
2749 {
2750 PlayerBase player = PlayerBase.Cast(this.GetHierarchyRootPlayer());
2751
2752 if (player)
2753 {
2754 player.MessageAction(text);
2755 }
2756 }