12.10.2016, 11:15
how do i add more lines in dialog_style_msgbox?
Like using the \n option? How shall it look like? thx
Like using the \n option? How shall it look like? thx
ShowPlayerDialog(playerid, YOUR_DIALOG_ID, DIALOG_STYLE_MSGBOX, "Notice", "1.Yo\n2.Yo two\n3.Yo three", "Close", "");
I understand this, I mean I can't make this message huge? Like add much more then it can hold in 1 line..
|
new string[1000];
strcat(string, "Hello world\nMore lines\n\nMore more lines.");
ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Test", string, "Close", "");