29.08.2013, 15:38
pawn Код:
RegisterPlayer(playerid, inputtext);
Replace to:
pawn Код:
new hashPassword[129];
WP_Hash(hashPassword, 129, inputtext);
RegisterPlayer(playerid, hashPassword);
RegisterPlayer(playerid, inputtext);
new hashPassword[129];
WP_Hash(hashPassword, 129, inputtext);
RegisterPlayer(playerid, hashPassword);