20.01.2013, 18:08
I forgot this is the timer Stuffs :
pawn Код:
forward Silencer();
public Silencer()
{
for(new i; i<MAX_PLAYERS; i++)
{
if(!IsPlayerConnected(i)) continue;
SecondesMute[i] ++;
if(SecondesMute[i] == 600)
{
SendClientMessage(i,COLOR_WHITE,"10min of mute is done , you can speak.");
Mute[i]=0;
SecondesMute[i]=0;
KillTimer(TuerSilencer);
}
}
return 1;
}