#1

Hello all.

Код:
ShowPlayerDialog(playerid,0,DIALOG_STYLE_MSGBOX,"Something.","Text:\n\n\
		\nSome text\
		\nSome text\
		\nSome text\
		\nSome text\
		","w","w");
When I type a lot of text, pawno shows that line too long. What can I do? I have to write all the text I want.
Reply
#2

pawn Код:
new text[256];
strcat(text, "Some text", sizeof(text));
strcat(text, "\nSome text", sizeof(text));
strcat(text, "\nSome text", sizeof(text));
strcat(text, "\nSome text", sizeof(text));
ShowPlayerDialog(playerid,0,DIALOG_STYLE_MSGBOX,"Something.",text,"w","w");
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)