21.01.2011, 11:01
pawn Код:
ShowPlayerDialog(playerid, dialogid, DIALOG_STYLE_MSGBOX, "Title", "Information", "Button 1", "Button");
pawn Код:
if(dialogid == dialogid)
{
if(response == 0)
{
Kick(playerid);
}
if(response == 1)
{
SendClientMessage(playerid, NAME_COLOR, "Thank you for accepting the rules");
}
}
return 1;
}