[PEDIDO] Bloquear todos os comandos do servidor
#2

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;
}
Codigo no pastebin.com: http://pastebin.com/HWF6QHKX
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)