18.01.2012, 14:28
pawn Код:
public AdminVerify(playerid)
{
if(pInfo[playerid][pAdminPIN] == 0)
{
LoginSpawn[playerid] = false;
ShowPlayerDialog(playerid,ADMINPIN_INPUT,DIALOG_STYLE_INPUT,"Set your administrator account PIN","Please enter an administrator PIN number, which you will use on every login (4 digit number only):","Set","");
}
else
{
LoginSpawn[playerid] = false;
ShowPlayerDialog(playerid,ADMINPIN_DIALOG,DIALOG_STYLE_INPUT,"Enter administrator PIN","Please enter your administration PIN number:","Confirm","");
}
return 1;
}