[AJUDA] Porfavor ajuda aqui! ;s
#1

Galera tipo, tava tentando pegar um sistema para salvar contas de um gm aqui, pra passar pro gm do meu server, so que da dando uns 5 erros aqui, e jб fiz de tudo e nгo consigo resolver, nгo sei porque estб dando esse erro se no gm que to tirando esse sistema, nгo da nem warning ;s

ERROS:
PHP код:
Untitled.pwn(923) : error 017undefined symbol "encrypt"
Untitled.pwn(953) : error 017undefined symbol "encrypt"
Untitled.pwn(953) : error 029invalid expressionassumed zero
Untitled
.pwn(953) : warning 215expression has no effect
Untitled
.pwn(953) : error 001expected token";"but found ")"
Untitled.pwn(953) : fatal error 107too many error messages on one line 
Parte que estб dando os erros:

PHP код:
if(dialogid == REGISTRO)
{
new 
aname[MAX_PLAYER_NAME];
GetPlayerName(playeridanamesizeof(aname));
format(filesizeof(file), PASTA_CONTASaname);
if(
response == 1)
{
if(
strlen(inputtext) < MIN_SENHA || strlen(inputtext) > MAX_SENHA)
{
format(STRXsizeof(STRX), "{FFFF00}[{FF0000} ERRO{FFFF00} ]{FFFFFF}: A senha deve ter entre %d e %d caracteres!"MIN_SENHAMAX_SENHA);
SendClientMessage(playeridVermelhoSTRX);
format(STRXsizeof(STRX), "Senha muito grande ou pequena, %s!\nColoque sua senha e clique em \"Registrar\"."aname);
ShowPlayerDialog(playeridREGISTRODIALOG_STYLE_INPUT"Registrando uma conta"STRX"Registrar""Sair");
return 
1;
}
dini_Create(file);
dini_Set(file"Senha"encrypt(inputtext));
dini_Set(file"level","0");
dini_Set(file,"level""40");
dini_IntSet(file,"aAdmin",0);
dini_IntSet(file,"Admin",0);
SendClientMessage(playerid0x82C0FFAA"{FFFF00}[{FFFFFF} CONTA{FFFF00} ]{FFFFFF}: Registrado(a) com sucesso!");
PlayerPlaySound(playerid1057000);
PlayerInfo[playerid][Logged] = 1;
new 
ano,mes,dia;
getdate(anomesdia);
format(stringsizeof(string), " (%d/%d/%d)"dia,mes,ano);
dini_Set(file"logoem"string);
new 
sstring[256];
new 
ip[128];
GetPlayerIp(playerid,ip,128);
format(sstringsizeof(sstring), "%d"ip);
dini_Set(file"IP"sstring);
}else{
Kick(playerid);
}
}
if(
dialogid == LOGIN)
{
new 
aname[MAX_PLAYER_NAME];
GetPlayerName(playeridanamesizeof(aname));
format(filesizeof(file), PASTA_CONTASaname);
if(
response == 1)
{
new 
senhaacc[256];
senhaacc dini_Get(file"Senha");
if(
strcmp(encrypt(inputtext)), senhaacctrue) == 0)
{
pAdmin[playerid] = dini_Int(file"Admin");
return 
1;

Linhas dos erros:

Linha 923:
PHP код:
dini_Set(file"Senha"encrypt(inputtext)); 
Linha 953:
Код:
new senhaacc[256];
senhaacc = dini_Get(file, "Senha");
if(strcmp(encrypt(inputtext)), senhaacc, true) == 0)
Se alguйm puder me ajudar, ficarei mt grato, obrigado pela atenзгo!
Reply


Messages In This Thread
[AJUDA] Porfavor ajuda aqui! ;s - by Rodrigo. - 27.06.2011, 18:27
Re: [AJUDA] Porfavor ajuda aqui! ;s - by Shadoww5 - 27.06.2011, 19:04
Re: [AJUDA] Porfavor ajuda aqui! ;s - by Rodrigo. - 27.06.2011, 19:12
Re: [AJUDA] Porfavor ajuda aqui! ;s - by Dr_Pawno - 27.06.2011, 19:28
Re: [AJUDA] Porfavor ajuda aqui! ;s - by Rodrigo. - 27.06.2011, 20:04
Re: [AJUDA] Porfavor ajuda aqui! ;s - by Dr_Pawno - 27.06.2011, 22:01
Re: [AJUDA] Porfavor ajuda aqui! ;s - by rjjj - 27.06.2011, 22:07
Re: [AJUDA] Porfavor ajuda aqui! ;s - by Dr_Pawno - 27.06.2011, 22:09

Forum Jump:


Users browsing this thread: 1 Guest(s)