19.08.2010, 10:32
pawn Код:
SetTimerEx("MuteTimer", 60000, false, "i", playerid);
//Put this in your mute command and change the playerid, with the name you use to mute someone, example "otherid"
pawn Код:
//Change the MuteTimer with this one
public MuteTimer(playerid);
{
PlayerInfo[playerid][muted] = 0;
return 1;
}