12.03.2016, 23:40
Quote:
Are you saving the player's password correctly? Can you show me the 'Password' enumerator and the function responsible for saving the data?
|
PHP Code:
enum USER_DATA
{
Password[129],
bool:Authenticated
} // Hiding the others.
PHP Code:
public LoadPlayerData_user(playerid, name[], value[])
{
INI_String("Password", PlayerInfo[playerid][Password], 129);
return 1;
}