Me Preguntaba si me podrian ayudar a como hacer para que cuando te estas registrando, cuando te Preguntan, ї En que Fecha Naciste ? (dd/mm/aa) como hago para que solo se deba escribir la edad en vez de 22/05/1990
Es que quiero poner el registro en puros Dialogs, y con eso de la edad se me hace mas facil aprender xD
pawn Код:
else if(RegistrationStep[playerid] == 2)
{
new year, month,day;
getdate(year, month, day);
new DateInfo[3][20];
split(text, DateInfo, '/');
if(year - strvalEx(DateInfo[2]) > 100 || strvalEx(DateInfo[2]) < 1 || strvalEx(DateInfo[2]) >= year)
{
SendClientMessage(playerid, COLOR_LIGHTRED, "Cual es tu fecha de nacimiento? (Use dd/mm/aaaa Ej: 1/1/1999)");
return 0;
}
new check = year - strvalEx(DateInfo[2]);
if(check == year)
{
SendClientMessage(playerid, COLOR_LIGHTRED, "Cual es tu fecha de nacimiento? (Use dd/mm/aaaa Ej: 1/1/1999)");
return 0;
}
if(strvalEx(DateInfo[1]) > month)
{
check -= 1;
}
else if(strvalEx(DateInfo[1]) == month && strval(DateInfo[0]) > day)
{
check -= 1;
}
PlayerInfo[playerid][pAge] = check;
format(string, sizeof(string), "Ok, Tu Edad es %d.",PlayerInfo[playerid][pAge]);
SendClientMessage(playerid, COLOR_YELLOW2, string);
RegistrationStep[playerid] = 3;
SendClientMessage(playerid, COLOR_LIGHTRED, "De donde Vienes? (Escriba: Este, Oeste, Centro, LV City)");
return 0;
}