SA-MP Forums Archive
Una Ayudita - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: Non-English (https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Español/Spanish (https://sampforum.blast.hk/forumdisplay.php?fid=29)
+---- Thread: Una Ayudita (/showthread.php?tid=141175)



Una Ayudita - Roymer - 12.04.2010

Hola
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


Re: Una Ayudita - CristianTdj - 12.04.2010

Ensйсanos como viene ahн lo de la fecha.


Re: Una Ayudita - Roymer - 12.04.2010

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;
      }



Re: Una Ayudita - Roymer - 13.04.2010

Ayudenme Plz