03.02.2015, 05:07
This dialog shows up correctly, but this DIALOG_MESSAGES is not showing after this one..
pawn Код:
new str[1800];
strcat(str, "Message 1", sizeof(str));
strcat(str, "Message 2", sizeof(str));
strcat(str, "Message 3", sizeof(str));
strcat(str, "Message 4", sizeof(str));
strcat(str, "Message 5", sizeof(str));
SPD(playerid, DIALOG_MESSAGES , DIALOG_STYLE_MSGBOX, "Messages", str, "Next", "Exit");
strdel(str, 0, sizeof(str));
pawn Код:
case DIALOG_MESSAGES:
{
if(response)
{
new stra[1800];
strcat(stra, "Message Testata", sizeof(stra));
SPD(playerid, DIALOG_REG, DIALOG_STYLE_INPUT, "Register", stra, "Reg", "Exit");
}
else
{
Kick(playerid);
}
}

