19.03.2013, 22:18
You can use strcat to join the 2 strings together. So if you have a large line, you can use
That should remove the error
pawn Код:
new string[256];
format(string, sizeof(string), "First\nSecond\nThird\nAlotmoreorsomethin");
strcat(string, "\nHere comes some more\nand more");
strcat(string, "\nEven more comin yeh");
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_LIST, "Some Dialog", string, "ok", "cancel");