Send message to owner player in red color.
- Возвращает
void
item_stone.MessageToOwnerImportant("Some Important Message");
См. определение в файле ItemBase.c строка 2756
2757 {
2758 PlayerBase player = PlayerBase.Cast(this.GetHierarchyRootPlayer());
2759
2760 if (player)
2761 {
2762 player.MessageImportant(text);
2763 }
2764 }