15.03.2012, 19:39
strcmp returns 0 when two strings match.
pawn Код:
if(strcmp(PlayerInfo[playerid][pKey], hashPassword, true))
//should be
if(strcmp(PlayerInfo[playerid][pKey], hashPassword, true) == 0)