06.05.2011, 23:45
pawn Код:
new ComandosBloqueados = 0;
public OnPlayerCommandText(playerid, cmdtext[])
{
//INICIO DO ONPLAYERCOMMANDTEXT
if(ComandosBloqueados == 1 && !IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xF2D518FF, " TODOS os comandos estгo bloqueados !" );
if(strcmp(cmd, "/bloquearcmds", true) == 0)
{
if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, 0xF2D518FF, " Vocк nгo estб logado na RCON !");
if(ComandosBloqueados = 1)
{
ComandosBloqueados = 0;
SendClientMessage(playerid, 0xF2D518FF, " Os comandos foram desbloqueados !");
return 1;
}
else
{
ComandosBloqueados = 1;
SendClientMessage(playerid, 0xF2D518FF, " Os comandos foram bloqueados !");
return 1;
}
}
return 1;
}