11.07.2015, 23:38
Well, i took a look over the codes and its poorly made, and not recommended to use, because he is using :
enum pInfo
{
pPass,
pRegistered
}
INI_Int("Password",PlayerInfo[playerid][pPass]); He loads the password as an integer ( like 12313 ) numbers only, not as a string thats why he used to compare them like this, i don't know if there is some more bugs so its more recommended to use this one:
https://sampforum.blast.hk/showthread.php?tid=273088
enum pInfo
{
pPass,
pRegistered
}
INI_Int("Password",PlayerInfo[playerid][pPass]); He loads the password as an integer ( like 12313 ) numbers only, not as a string thats why he used to compare them like this, i don't know if there is some more bugs so its more recommended to use this one:
https://sampforum.blast.hk/showthread.php?tid=273088