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

◆ SendNotificationToPlayerExtended()

static void NotificationSystem::SendNotificationToPlayerExtended ( Man player,
float show_time,
string title_text,
string detail_text = "",
string icon = "" )
inlinestaticprotected

Send custom notification to player from server.

Аргументы
playerthe target player to send notification to
show_timeamount of time this notification is displayed
title_textthe title text that is displayed in the notification
detail_textadditional text that can be added to the notification under the title - will not display additional text if not set
iconthe icon that is displayed in the notification - will use default icon if not set

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

126 {
127 if (player)
128 {
129 SendNotificationToPlayerIdentityExtended(player.GetIdentity(), show_time, title_text, detail_text, icon);
130 }
131 }
static void SendNotificationToPlayerIdentityExtended(PlayerIdentity player, float show_time, string title_text, string detail_text="", string icon="")
Send custom notification to player identity from server.
Определения NotificationSystem.c:141

Перекрестные ссылки SendNotificationToPlayerIdentityExtended().