21.12.2010, 10:46
Hey,
Add this:
At the top of your gamemode,
then add this:
On 'OnPlayerRequestSpawn',
then add:
On 'OnPlayerText'
Then add:
On 'OnPlayerSpawn'.
I hope it works, it was fast made though.
Add this:
pawn Код:
new Muted[MAX_PLAYERS];
then add this:
pawn Код:
Muted[playerid] = 1;
then add:
pawn Код:
if(Muted[playerid] == 1)
{
return 0;
}
Then add:
pawn Код:
Muted[playerid] = 0;
I hope it works, it was fast made though.