03.11.2012, 13:43
Hey i have a "/stats" Cmd.
i got problem with the hash Pass (( i got Y_INI Register System ))
i want to see my real Pass, not hashed.
The Register SYSTEM: https://sampforum.blast.hk/showthread.php?tid=273088
The commnd:
Help please +Rep.
i got problem with the hash Pass (( i got Y_INI Register System ))
i want to see my real Pass, not hashed.
The Register SYSTEM: https://sampforum.blast.hk/showthread.php?tid=273088
The commnd:
Код:
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; }