if(dialogid == 12345)
{
if (response == 1)
{
if(strlen(inputtext))
{
OnPlayerRegister(playerid,inputtext);
}
else if(!strlen(inputtext))
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
new kayitmsg[256];
format(kayitmsg,256,"Benvenuto a Magrid City {ffff9d}%s{ffffff} !!!\n\nCrea un nuovo account per poter giocare !\n\nDigita la nuova password desiderata:",name);
ShowPlayerDialog(playerid,12345,DIALOG_STYLE_INPUT,"Registrazione",kayitmsg,"Registrati","Esci");
if(strfind(inputtext, "=") != -1)
{
format(kayitmsg,256,"Benvenuto a Magrid City {ffff9d}%s{ffffff} !!!\n\nCrea un nuovo account per poter giocare !\n\nDigita la nuova password desiderata:",name);
ShowPlayerDialog(playerid,12345,DIALOG_STYLE_INPUT,"Registrazione",kayitmsg,"Registrati","Esci");
SendClientMessage(playerid, COLOR_RED, "Carattere non ammesso");
return 1;
}
if(strfind(inputtext, ",") != -1)
{
format(kayitmsg,256,"Benvenuto a Magrid City {ffff9d}%s{ffffff} !!!\n\nCrea un nuovo account per poter giocare !\n\nDigita la nuova password desiderata:",name);
ShowPlayerDialog(playerid,12345,DIALOG_STYLE_INPUT,"Registrazione",kayitmsg,"Registrati","Esci");
SendClientMessage(playerid, COLOR_RED, "Carattere non ammesso");
return 1;
}
}
}
else return Kick(playerid);
}
if(dialogid == 12346)
{
if (response == 1)
{
if(strlen(inputtext))
{
OnPlayerLogin(playerid,inputtext);
}
else if(!strlen(inputtext))
{
new name[MAX_PLAYER_NAME];
GetPlayerName(playerid, name, sizeof(name));
new girismsg[256];
format(girismsg,256,"Bentornato su Magrid City\n\nNome Utente: {ffff9d}%s{ffffff}\n\nDigita la tua password per effettuare il Log-in:",name);
ShowPlayerDialog(playerid,12346,DIALOG_STYLE_INPUT,"Login",girismsg,"Entra","Esci");
}
}
else return Kick(playerid);
}