Logando com qlqr senha -
HelderPT - 08.04.2018
Eu consigo logar na conta com qlqr senha !!
PHP код:
f(dialogid == LOGIN)
{
if(!response)
{
SendClientMessage(playerid,-1,"{00BFFF}Voce foi kickado por nao Logar.");
Kick(playerid);
}
else {
if(response == 1)
{
format(vfile, sizeof(vfile), DIRETORIO, pName(playerid));
new senhaacc[256];
senhaacc = DOF2_GetString(vfile, "Senha");
if(strcmp(inputtext, senhaacc, true) == 0)
{
pAdmin[playerid] = DOF2_GetInt(vfile, "LevelAdmin");
pGasolina[playerid] = DOF2_GetInt(vfile, "Gasolina");
GivePlayerGranaEx(playerid, DOF2_GetInt(vfile, "Dinheiro"));
SetPlayerWantedLevel(playerid, DOF2_GetInt(vfile, "Procurado"));
Experiencia[playerid] = DOF2_GetInt(vfile, "Experiencia");
SetPlayerSkin(playerid, DOF2_GetInt(vfile, "Skin"));
Preso[playerid] = DOF2_GetInt(vfile, "Preso");
pLevel[playerid] = DOF2_GetInt(vfile, "Level");
Profissao[playerid] = DOF2_GetInt(vfile, "Profissao");
SetSpawnInfo(playerid, 0, 23, 2491.4192, -1958.0892, 13.58, 13.75, 0, 0, 0, 0, 0, 0 );
pFase[playerid][Logado] = 1;
GivePlayerGranaEx(playerid, DOF2_GetInt(vfile, "Dinheiro"));
SpawnPlayer(playerid);
GameTextForPlayer(playerid, "~g~Logado ~n~ Com Sucesso", 8000, 1);
PlayerPlaySound(playerid, 1057, 0, 0, 0);
}
else {
SendClientMessage(playerid, Vermelho ,"(x) Senha Incorreta");
format(StringLg, sizeof(StringLg), "Senha Incorreta, %s\n Tente Digitar sua Senha Novamente!", pName(playerid));
ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_INPUT, "Login", StringLg, "Logar", "Sair");
}
}
else {
format(StringLg, sizeof(StringLg), "{FFFAFA}Usuario: {FFD700}%s\n{FFFAFA}Conta: {00FF00}Registrada\n{FFFAFA}Digite sua Senha e Clique em Logar", pName(playerid));
ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_INPUT, "Login", StringLg, "Logar", "Sair");
return 1;
}
}
}
Re: Logando com qlqr senha -
XandyMello - 08.04.2018
PHP код:
if(dialogid == LOGIN)
{
if(!response) {
SendClientMessage(playerid,-1,"{00BFFF}Voce foi kickado por nao Logar.");
return Kick(playerid);
}
else
{
new vfile[64];
format(vfile, sizeof(vfile), DIRETORIO, pName(playerid));
if(!strcmp(inputtext, DOF2_GetString(vfile, "Senha"), true) && !isnull(inputtext))
{
pAdmin[playerid] = DOF2_GetInt(vfile, "LevelAdmin");
pGasolina[playerid] = DOF2_GetInt(vfile, "Gasolina");
GivePlayerGranaEx(playerid, DOF2_GetInt(vfile, "Dinheiro"));
SetPlayerWantedLevel(playerid, DOF2_GetInt(vfile, "Procurado"));
Experiencia[playerid] = DOF2_GetInt(vfile, "Experiencia");
SetPlayerSkin(playerid, DOF2_GetInt(vfile, "Skin"));
Preso[playerid] = DOF2_GetInt(vfile, "Preso");
pLevel[playerid] = DOF2_GetInt(vfile, "Level");
Profissao[playerid] = DOF2_GetInt(vfile, "Profissao");
SetSpawnInfo(playerid, 0, 23, 2491.4192, -1958.0892, 13.58, 13.75, 0, 0, 0, 0, 0, 0 );
pFase[playerid][Logado] = 1;
GivePlayerGranaEx(playerid, DOF2_GetInt(vfile, "Dinheiro"));
SpawnPlayer(playerid);
GameTextForPlayer(playerid, "~g~Logado ~n~ Com Sucesso", 8000, 1);
PlayerPlaySound(playerid, 1057, 0, 0, 0);
}
else
{
SendClientMessage(playerid, Vermelho ,"(x) Senha Incorreta");
format(StringLg, sizeof(StringLg), "Senha Incorreta, %s\n Tente Digitar sua Senha Novamente!", pName(playerid));
ShowPlayerDialog(playerid, LOGIN, DIALOG_STYLE_INPUT, "Login", StringLg, "Logar", "Sair");
}
return 1;
}
}
Re: Logando com qlqr senha -
HelderPT - 08.04.2018
Erro: warning 219: local variable "vfile" shadows a variable at a preceding level
Linha: new vfile[64];
Re: Logando com qlqr senha -
IlanZ - 08.04.2018
Jб tem uma variбvel com esse mesmo nome declarada, mude o nome ou delete uma.
Re: Logando com qlqr senha -
HelderPT - 08.04.2018
Obligado !