01.07.2014, 14:59
Como hacer que coloque obligatoriamente el "@" al registrar el Email?
Yo tengo asi, pero nose como hacer eso
Yo tengo asi, pero nose como hacer eso
PHP код:
case Email:
{
if(response)
{
if(!strlen(inputtext)) return ShowPlayerDialog(playerid, Email, DIALOG_STYLE_INPUT,"Email","Ingresa tu E-mail","Ok","");
DOF2_SetString(ContaPlayer(playerid),"Email", inputtext);
DOF2_SaveFile();
ShowPlayerDialog(playerid, DIALOG_SEXO, DIALOG_STYLE_LIST,"{FFDD00}Golden Zone "cBlanco"["cAmarillo"RPG"cBlanco"]: Eres Hombre o Mujer?","Hombre\nMujer","Registrar","Salir");
return 1;
}
else if(!response)
{
new text[] = "Ingresa tu e-mail electronico";
ShowPlayerDialog(playerid, Email, DIALOG_STYLE_INPUT,"E-mail", text, "Siguiente","");
return 1;
}
return 1;
}