if (strcmp("/stats", cmdtext, true, 5) == 0)
{
SendClientMessage(playerid, 0xFFFFFFFF, "___________________________________________");
SendClientMessage(playerid, 0xFFFFFFFF, " ");
new string[128];
new aname[MAX_PLAYER_NAME];
GetPlayerName(playerid, aname,sizeof(aname));
format(string,sizeof(string), " %s These are your stats:", aname);
SendClientMessage(playerid, 0xFFFFFFFF,string);
format(string,sizeof(string), "Password: %i", PlayerInfo[playerid][pPass]);
SendClientMessage(playerid, 0xFFFFFFFF, string);
format(string,sizeof(string), "Cash: %i", GetPlayerMoney(playerid));
SendClientMessage(playerid, 0xFFFFFFFF, string);
format(string,sizeof(string), "Kills: %i", PlayerInfo[playerid][pKills]);
SendClientMessage(playerid, 0xFFFFFFFF, string);
format(string,sizeof(string), "Deaths: %i", PlayerInfo[playerid][pDeaths]);
SendClientMessage(playerid, 0xFFFFFFFF, string);
format(string,sizeof(string), "Admin Level: %i", PlayerInfo[playerid][pAdmin]);
SendClientMessage(playerid, 0xFFFFFFFF, string);
SendClientMessage(playerid, 0xFFFFFFFF, "___________________________________________");
return 1;
}
|
So....?,
For what i need people's Password?, i need to see the pass, cuz, if some player forgot is Password he post on the Forum - Lost Password, and then i can reset is Password and give him it back, Please if you can UnHash it PM me the script! |
|
an ezi way is make a test account with temp password like 123456 and goto test account file copy his hash and replace with lost password hash thats it
|