Dialog doesn't fully show - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (
https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (
https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Dialog doesn't fully show (
/showthread.php?tid=432670)
Dialog doesn't fully show -
Red_Dragon. - 23.04.2013
FIXED
Re: Dialog doesn't fully show -
rbush12 - 23.04.2013
Shorten the lines down more.
Re: Dialog doesn't fully show -
Red_Dragon. - 23.04.2013
I need these lines, do you mean I delete some lines ?
Re: Dialog doesn't fully show -
Rock - 23.04.2013
Make another strcat to include all the commands.
The include says that your line is too long.(The one below cmdstring definition)
Re: Dialog doesn't fully show -
Red_Dragon. - 23.04.2013
Does this show all the commands at the same dialog ? please provide an example
Re: Dialog doesn't fully show -
Rock - 23.04.2013
pawn Код:
new szTest[ 50 ];
strcat( szTest, "Line 1\n" );
strcat( szTest, "Line 2\n" );
strcat( szTest, "Line 3\n" );
ShowPlayerDialog( playerid, DIALOG_CMDS, DIALOG_STYLE_MSGBOX, "Commands", szTest, "Ok", "" );
Remember, this is just an example.
An yes, it shows all the commands in the same dialog.
Re: Dialog doesn't fully show -
Red_Dragon. - 24.04.2013
Every command in a separate strcat or what ?
EDIT: FIXED thanks rockk