22.07.2014, 19:17
That's the problem, solve:
Wrong GetPlayerName format..
You forgot the size of variable (name) and sizeof it
pawn Код:
new name[MAX_PLAYER_NAME];
format(string, sizeof(string), "INSERT INTO `accounts` (Name, Password) VALUES ('%s', '%s')", GetPlayerName(playerid, name, sizeof(name)), HashedPW);
You forgot the size of variable (name) and sizeof it