06.04.2013, 16:05
pawn Код:
pEmail,
OnPlayerSpawn
if(PlayerInfo[playerid][pEmail] == 0)
{
ShowPlayerDialog(playerid, 1928, DIALGO_STYLE_INPUT, "Email","Type your Email Adress to Security Your Account","OK","Exit");
}
OnDialogResponse
if(dialogid == 1928)
{
if(response)
{
PlayerInfo[playerid][pEmail] = inputtext;
SendClientMessage(playerid, COLOR_WHITE, "You putted an Email type: %s", PlayerInfo[playerid][pEmail]);
Email[playerid] = 1;
}
}
