[Pedido] E-mail DIALOG - 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: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Pedido] E-mail DIALOG (
/showthread.php?tid=460890)
E-mail DIALOG -
powerths - 30.08.2013
Alguem sabe como fais o E-maill em
DIALOG_STYLE_INPUT mais tipo o player e obrigado a digite isto junto com E-maill
@ exemplo:
player@sa-mp.com sem o -->
@ <-- nгo tem como registrar a palavra chave da conta, ajudar eu agradeзo.
Re: E-mail DIALOG -
JeeanK2 - 30.08.2013
vocк quer que o player se registre e use o E-Mail certo ?
Re: E-mail DIALOG -
powerths - 30.08.2013
Sim, isso que qro su puder ajudar eu agradeзo.
Edit:
Alguem
Re: E-mail DIALOG -
shittt - 30.08.2013
https://sampforum.blast.hk/showthread.php?tid=402942
Otimo sistema estou usando ele recomendo !!!
Re: E-mail DIALOG -
darkxdll - 30.08.2013
Uma funзгo que o Willian fez pra min para
PHP код:
//Coded by: Willian Luigi
stock readFormat(reader[])
{
if (reader[0] == '\0' || strfind(reader, "/") == -1) return false;
new
sS = 0,
sNextVal[15],
sOldVal[15],
sBarFind = 0,
sV = 2;
strcat(sOldVal, reader);
sOldVal[strlen(sOldVal)] = '/';
do
{
if ((sS = strfind(sOldVal, "/")) != -1)
{
sBarFind ++;
if (sBarFind == 3) sV = 4;
strmid(sNextVal, sOldVal, 0, sS);
if (!strval(sNextVal) || strlen(sNextVal) != sV) return false;
switch(sBarFind)
{
case 1: if (!(0 < strval(sNextVal) < 32)) return false;
case 2: if (!(0 < strval(sNextVal) < 13)) return false;
case 3: if (!(1905 < strval(sNextVal) < 2005)) return false;
default: return false;
}
strmid(sOldVal, sOldVal, sS + 1, strlen(sOldVal));
}
} while(sS > 0);
return sBarFind == 3;
}
Ela vai ver se o formato da mensagem estб neste modelo : "DD/MM/AAAA" , (Dia , Mes , Ano) .
Adapte ao seu cуdigo e estude para fazer um que pegue o "@" apenas.