Send message to owner player in red color.
- Возвращает
void item_stone.MessageToOwnerImportant("Some Important Message");
См. определение в файле ItemBase.c строка 2784
2785 {
2786 PlayerBase player = PlayerBase.Cast(this.GetHierarchyRootPlayer());
2787
2788 if (player)
2789 {
2790 player.MessageImportant(text);
2791 }
2792 }