Skip to content
User Avatar
#2278
Auto-translated
Oh, wise experts, please tell me how to display a message to the player on the FIRST day of the game? I tried to do it using:
Trigger(NEW_DAY_TRIGGER, "new_day" );
function new_day()
if GetDate(DAY) == 1 then
MessageBoxForPlayers(PLAYER_1,GetMapDataPath().."hello.txt");
end;
end;
But, unfortunately, it doesn't work =( When I change the day to the second, the message is displayed.