Send message to owner player in red color.
- Возвращает
void
item_stone.MessageToOwnerImportant("Some Important Message");
См. определение в файле ItemBase.c строка 2686
2687 {
2688 PlayerBase player = PlayerBase.Cast(this.GetHierarchyRootPlayer());
2689
2690 if (player)
2691 {
2692 player.MessageImportant(text);
2693 }
2694 }