09.02.2015, 15:28
Like the title says - that didn't work
PHP код:
public OnPlayerCommandText(playerid, cmdtext[])
{
if(Mute[playerid] == 1)
{
SendClientMessage(playerid, -1, "{FF0000}You're jailed, you're muted and you are not allowed to use commands.");
return 0;
}
else
{
if(Mute[playerid] == 0) return 1;
}
return 1;
}