SA-MP Forums Archive
Dialog - 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 (/showthread.php?tid=413766)



Dialog - Blackazur - 06.02.2013

~Done~


Re: Dialog - Da_Noob - 06.02.2013

pawn Код:
COMMAND:commands(playerid, params[])
{
  ShowPlayerDialog(playerid, 1, DIALOG_STYLE_MSGBOX, "Commands", "// Write all your SCM here//", "Oke","Exit")
  return 1;
}
Something like this. You can use \n to skip a line, so if I would do:

pawn Код:
Hello\nWorld
It would be seen in the MSGBOX as:

pawn Код:
Hello
World
I think you can do the rest.


Re: Dialog - CrazyChoco - 06.02.2013

You could use strcat, function too.


AW: Re: Dialog - Blackazur - 06.02.2013

~Done~