08.04.2018, 15:10
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;
}
}
}