How to creat big dialog msg box
#2

Try this

ShowPlayerDialog
pawn Код:
ShowPlayerDialog(playerid,0,DIALOG_STYLE_MSGBOX,"Rules","Rules server:\nRule 1\nRule 2\nRule 3","Accept","Cancel");
OnDialogResponse
pawn Код:
if(dialogid == 8)
{
if(response == 0)
{
SendClientMessage(playerid, -1, "You have been kicked for not accepting the rules.");
Kick(playerid);
}
if(response == 1)
{
SendClientMessage(playerid, -1, "Thank you for accepting the rules");
}

return 1;
}
Reply


Messages In This Thread
How to creat big dialog msg box - by sn0p - 18.01.2014, 18:33
Re: How to creat big dialog msg box - by Nourdin - 18.01.2014, 18:42
Re: How to creat big dialog msg box - by sn0p - 18.01.2014, 18:44
Re: How to creat big dialog msg box - by Nourdin - 18.01.2014, 18:51
Re: How to creat big dialog msg box - by 1FreeHost - 18.01.2014, 18:59
Re: How to creat big dialog msg box - by EmrysXD - 18.01.2014, 19:02
Re: How to creat big dialog msg box - by sn0p - 18.01.2014, 19:05
Re: How to creat big dialog msg box - by zola0311 - 18.01.2014, 20:31
Re: How to creat big dialog msg box - by Blademaster680 - 18.01.2014, 22:42

Forum Jump:


Users browsing this thread: 3 Guest(s)