SA-MP Forums Archive
ShowPlayerDialog "\n" Problem - 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: ShowPlayerDialog "\n" Problem (/showthread.php?tid=283056)



ShowPlayerDialog "\n" Problem - Tigerbeast11 - 13.09.2011

I know what the problem is here:
pawn Код:
format(string,sizeof(string),"Server: %s (id:%d)",name,i);
        return ShowPlayerDialog(playerid,0,DIALOG_STYLE_MSGBOX,"Online Admins",string"\n","OK","");
But how can I fix it?


Re: ShowPlayerDialog "\n" Problem - [L3th4l] - 13.09.2011

pawn Код:
format(string,sizeof(string),"Server: %s (id:%d)\n",name,i);
        return ShowPlayerDialog(playerid,0,DIALOG_STYLE_MSGBOX,"Online Admins",string,"OK","");



Re: ShowPlayerDialog "\n" Problem - Tigerbeast11 - 13.09.2011

EDIT: FIXED