[AJUDA] Comando de Orgs
#1

eu estava editando um GM e so falta isso pro gm que eu estou editando ficar tudo certinho:
Quando eu digito /br ou /bq pra criar barreira fala que nao sou policial ja tentei com todas as facзхes de policia e da o mesmo erro

cуdigo:

pawn Код:
if(strcmp(cmdtext, "/barreira", true)==0 || strcmp(cmdtext, "/br", true)==0)
    {
        if (!IsACop(playerid) || GetPlayerOrg(playerid) != 26) || GetPlayerOrg(playerid) != 2) return SendClientMessage(playerid, COLOR_GREY, "Vocк nгo й um Policial!");
        if(PlayerPaintballing[playerid] != 0)
        {
            SendClientMessage(playerid,COLOR_YELLOW," Vocк nгo pode por barreiras no evento!");
            return 1;
        }
        if (pRoadblock[playerid] != 0) return SendClientMessage(playerid, COLOR_GREY, "Vocк sу pode criar 1 barreira por vez, /rbr - para remover sua barreira");
        new Float:X, Float:Y, Float:Z, Float:A;
        GetPlayerPos(playerid, X, Y, Z);
        GetPlayerFacingAngle(playerid, A);
        pRoadblock[playerid] = Thiago_CreateObject(981, X, Y, Z, 0.0, 0.0, A+180, 300.0);
        SetPlayerPos(playerid, X, Y, Z+4);
        GameTextForPlayer(playerid, "~w~Barreira ~r~Criada", 5000, 5);
        SendClientMessage(playerid, COLOR_GREEN, "Barreira Implantada... Use /rbr Para Remove-la!");
        format(string, sizeof(string), "Estado: Uma barreira foi posta por %s.", PlayerName(playerid));
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(IsPlayerConnected(i))
            {
                if(IsACop(i))
                {
                    SendClientMessage(i, TEAM_BLUE_COLOR, string);
                    if (PlayerInfo[i][pCargo] >= 5 || PlayerInfo[i][pLider] > 0)
                    {
                        SendClientMessage(i, TEAM_BLUE_COLOR, "Vocк pode remover todas as barreiras usando /rbrall");
                    }
                }
            }
        }
    }
        return 1;
    }

if(strcmp(cmdtext, "/bloqueio", true)==0 || strcmp(cmdtext, "/bq", true)==0)
    {
        if(PlayerPaintballing[playerid] != 0)
        {
            SendClientMessage(playerid,COLOR_YELLOW," Vocк nгo pode por bloqueios no evento!");
            return 1;
        }
        if (!IsACop(playerid) || GetPlayerOrg(playerid) != 26) || GetPlayerOrg(playerid) != 2) return SendClientMessage(playerid, COLOR_GREY, "Vocк nгo й um policial!");
        if (pRoadCones[playerid] != 0) return SendClientMessage(playerid, COLOR_GREY, "Vocк sу pode implantar 1 Bloqueio por vez, /rbq - para remover seu bloqueio.");
        new Float:X, Float:Y, Float:Z, Float:A;
        GetPlayerPos(playerid, X, Y, Z);
        GetPlayerFacingAngle(playerid, A);
        pRoadCones[playerid] = Thiago_CreateObject(4526, X, Y, Z+1, 0.0, 0.0, A+110, 300.0);
        SetPlayerPos(playerid, X, Y, Z+1);
        GameTextForPlayer(playerid, "~w~Bloqueio ~r~Criado", 5000, 5);
        SendClientMessage(playerid, COLOR_GREEN, "Bloqueio Implantado... Use /rbq Para Remover e Poder Criar Mais!.");
        format(string, sizeof(string), "Estado: Um Bloqueio foi posto por %s.", PlayerName(playerid));
        for(new i = 0; i < MAX_PLAYERS; i++)
        {
            if(IsPlayerConnected(i))
            {
                if(IsACop(i))
                {
                    SendClientMessage(i, TEAM_BLUE_COLOR, string);
                    if (PlayerInfo[i][pCargo] >= 5 && IsACop(i))
                    {
                        SendClientMessage(i, COLOR_YELLOW, "Vocк pode remover todos os Bloqueios usando /rbqall");
                    }
                }
            }
        }
        return 1;
}
id das Orgs:

pawn Код:
Policia Militar - 1
B.O.P.E - 2
Exercito - 3
Policia Federal - 11
Polнcia Rodoviбria Federal - 24
Policia Civil - 16
Quem puder me ajudar eu agradeзeria! e do +Reputation
Reply


Messages In This Thread
[AJUDA] Comando de Orgs - by Rodrigo. - 07.12.2011, 19:41
Re: [AJUDA] Comando de Orgs - by ViniBorn - 07.12.2011, 19:44
Re: [AJUDA] Comando de Orgs - by Rodrigo. - 07.12.2011, 20:53
Re: [AJUDA] Comando de Orgs - by ViniBorn - 07.12.2011, 21:23
Re: [AJUDA] Comando de Orgs - by Rodrigo. - 07.12.2011, 21:43
Re: [AJUDA] Comando de Orgs - by Rodrigo. - 07.12.2011, 23:42
Re: [AJUDA] Comando de Orgs - by ViniBorn - 07.12.2011, 23:58

Forum Jump:


Users browsing this thread: 4 Guest(s)