10.12.2012, 20:29
pawn Код:
new ruleslist[] = "\n6\tBlah!";
new ruleslists[] = "\n6\tBlah!";
ShowPlayerDialog(playerid,19343,DIALOG_STYLE_LIST,"Test",ruleslist,ruleslists, "Select","Cancel");
new ruleslist[] = "\n6\tBlah!";
new ruleslists[] = "\n6\tBlah!";
ShowPlayerDialog(playerid,19343,DIALOG_STYLE_LIST,"Test",ruleslist,ruleslists, "Select","Cancel");
new message[] = "message\n messgae2\n message3...";
new message2[] = "\nmessage4\n message5 and so on..";
new string[256];//you can change the string value according to the length of the line/message
format(string, sizeof(string),"%s %s",message,message2);
ShowPlayerDialog(playerid, 19343, DIALOG_STYLE_MSGBOX,"Test",string,"Select","Cancel");
// --
new string[128];//you can change the string value according to the length of the line/message
format(string, sizeof(string),"\n6\tBlah!\
\n6\tBlah!\
\n6\tBlah!");
ShowPlayerDialog(playerid, 19343, DIALOG_STYLE_MSGBOX,"Test",string,"Select","Cancel");