10.01.2016, 16:58
Made a dialog that should be shown a couple seconds after the player spawns but it doesn't show for no reason.
Timer:
Dialog:
• Dialog is Defined
• Dialog still won't show if I don't use any strings there, just write a normal text
Timer:
Код:
SetTimerEx("TaisFreeze", 2500, false, "i", playerid);
Код:
forward TaisFreeze(playerid); public TaisFreeze(playerid) { new string1[128]; strins(string1, "first half long writing bla bla", 0); strcat(string1, "other half of long writing bla bla bla"); ShowPlayerDialog(playerid, 1012, DIALOG_STYLE_MSGBOX, "{FF0000}Rules", string1, "Good", ""); return 1; }
• Dialog still won't show if I don't use any strings there, just write a normal text