21.07.2010, 18:08
how do I put a long text in dialog?
I've seen servers with huge dialog with a lot of text inside.
as I do?
I've seen servers with huge dialog with a lot of text inside.
as I do?
str1[128];
str2[128];
str3[128];
new liststring[1524];
format(str1, sizeof str1, "Text 1\n");
format(str2, sizeof str2, "Text 2\n");
format(str3, sizeof str3, "Text 3\n");
format(liststring, sizeof liststring, "%s%s%s", str1, str2, str3);
ShowPlayerDialog(playerid, 91123, DIALOG_STYLE_MSGBOX, "Testing", liststring, "Okay", "Cancel");