10.09.2014, 08:00
Replace this line:
With these:
pawn Код:
format(string2, sizeof(string2), "UPDATE playeraccounts SET `Muted`='0',`MuteTime`='0' WHERE `playername`='%s'");
pawn Код:
new name[24];
GetPlayerName(x, name, sizeof(name));
format(string2, sizeof(string2), "UPDATE playeraccounts SET `Muted`='0',`MuteTime`='0' WHERE `playername`='%s'", name);