[AJUDA] Comando
#1

Alguйm poderia dizer pq este comando nгo funciona? Simplismente nгo acontece nada, nenhuma msg, nada!

pawn Код:
if(strcmp(cmd, "/apreender", true) == 0)
    {
        if(PlayerInfo[playerid][pTanabolisante] > 0) return SendClientMessage(playerid,COLOR_GREY,"[AV] Vocк estб suspenso!");
        if(IsACop(playerid))
        {
            if(PlayerInfo[playerid][pMember] != 1 || PlayerInfo[playerid][pLeader] != 1) return 0x01;
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp)) {
                SendClientMessage(playerid, COLOR_GRAD2, "[AV] /apreender [Preзo 0 - 100,000$]");
                return 1;
            }
            new preco;
            preco = strval(tmp);
            if(preco < 1 || preco > 20000) return SendClientMessage(playerid, COLOR_GREY, "  Ultilize de 1 a 20,000$!");
            new Float:x,Float:y,Float:z;
            new Float:a;
            new carid;
            carid = GetPlayerVehicleID(playerid);
            GetPlayerName(playerid, playername, sizeof(playername));
            GetVehiclePos(carid, x, y, z);
            GetVehicleZAngle(carid, a);
            if(!IsPlayerInAnyVehicle(playerid)) return SCM(playerid, COLOR_GRAD2, "[AV] Vocк nгo estб em um veнculo.");
            if(PlayerInfo[playerid][pAdmin] < 500000)
            {
                if(IsAnOwnableCar(carid))
                {
                    CarInfo[carid][cLocationx] = x;
                    CarInfo[carid][cLocationy] = y;
                    CarInfo[carid][cLocationz] = z;
                    CarInfo[carid][cAngle] = a;
                    CarInfo[carid][cInterior] = GetPlayerInterior(playerid);
                    CarInfo[carid][cVirWorld] = GetPlayerVirtualWorld(playerid);
                    CarInfo[carid][cImpounder] = 1;
                    CarInfo[carid][cImpounderP] = preco;
                    format(string, sizeof(string), "[AV] HQ: %s %s apreendeu o veнculo de %s[Impounder: %d] no estacionamento. **", GetPlayerCargo(playerid), GetPlayerNameEx(playerid), CarInfo[carid][cOwner], CarInfo[carid][cImpounderP]);
                    SendFamilyMessage(1, 0x8D8DFFAA, string);
                    OnPropUpdate(4,carid);

                    DestroyVehicle(carid);
                    ownedcar[carid] = AddStaticVehicleEx(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
                    SetVehicleNumberPlate(carid, CarInfo[carid][cCode]);
                    if(CarInfo[carid][cPaintjob] != 999)
                    {
                        ChangeVehiclePaintjob(carid, CarInfo[carid][cPaintjob]);
                    }
                    LinkVehicleToInterior(carid, CarInfo[carid][cInterior]);
                    SetVehicleVirtualWorld(carid, CarInfo[carid][cVirWorld]);
                    SetVehicleModifications(carid);
                    PutPlayerInVehicle(playerid, carid, 0);
                    new year, month,day;
                    getdate(year, month, day);
                    new hour, minute;
                    gettime(hour,minute);
                    format(string, sizeof(string), "%s apreendeu o carro ID ( %d/%d/%d - %d:%d )\r\n", GetPlayerNameEx(playerid),carid,year, month, day,hour, minute);
                    ApreenderLog(string);
                    return 1;
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Nгo estб autorizado a usar este comando !");
                    return 1;
                }
            }
            return 1;
        }
    }
Reply
#2

Tente seguir todas as restriзхes que o comando exige para ser executado, como nгo ter tomada anabolisante, ser policial, ser da organizaзгo 1, digitar um preco entre 1 e 20000, estar em um veiculo, ter level de admin menor que 500000 e possuir um OwnableCar.
Reply
#3

tenta mudar essa linha:
pawn Код:
if(PlayerInfo[playerid][pMember] != 1 || PlayerInfo[playerid][pLeader] != 1) return 0x01;
por

pawn Код:
if(PlayerInfo[playerid][pMember] != 1 || PlayerInfo[playerid][pLeader] != 1) return SendClientMessage(playerid,COLOR_GREY,"[AV] Vocк nгo й um Policial!");
Reply
#4

Nгo irб fazer diferenзa, pois 0x01 й a mesma coisa que 1, apenas estб em hexadecimal.
Reply
#5

A diferenзa estб em receber uma mensagem caso essa espressгo seja falsa:

pawn Код:
(PlayerInfo[playerid][pMember] != 1 || PlayerInfo[playerid][pLeader] != 1)
Sugiro que coloque uma mensagem no ъltimo return 1 tambйm, nem que seja pra saber de onde vem o problema.
Reply
#6

nгo seria ?
pawn Код:
(PlayerInfo[playerid][pMember] == 1 || PlayerInfo[playerid][pLeader] == 1)
Reply
#7

Funcionou, tive que tirar
pawn Код:
if(PlayerInfo[playerid][pMember] != 1 || PlayerInfo[playerid][pLeader] != 1) return 0x01;
pois vi que antes jб й verificado se й policial ou nгo, em:
pawn Код:
if(IsACop(playerid))
EDIT:
Outro problema, agora mostra a msg do ultimo return, do AAAA
pawn Код:
if(strcmp(cmd, "/apreender", true) == 0)
    {
        if(PlayerInfo[playerid][pTanabolisante] > 0) return SendClientMessage(playerid,COLOR_GREY,"[AV] Vocк estб suspenso!");
        if(IsACop(playerid))
        {
            tmp = strtok(cmdtext, idx);
            if(!strlen(tmp)) {
                SendClientMessage(playerid, COLOR_GRAD2, "[AV] /apreender [Preзo 0 - 100,000$]");
                return 1;
            }
            new preco;
            preco = strval(tmp);
            if(preco < 1 || preco > 20000) return SendClientMessage(playerid, COLOR_GREY, "  Ultilize de 1 a 20,000$!");
            new Float:x,Float:y,Float:z;
            new Float:a;
            new carid;
            carid = GetPlayerVehicleID(playerid);
            GetPlayerName(playerid, playername, sizeof(playername));
            GetVehiclePos(carid, x, y, z);
            GetVehicleZAngle(carid, a);
            if(!IsPlayerInAnyVehicle(playerid)) return SCM(playerid, COLOR_GRAD2, "[AV] Vocк nгo estб em um veнculo.");
            if(PlayerInfo[playerid][pAdmin] < 1)
            {
                if(IsAnOwnableCar(carid))
                {
                    CarInfo[carid][cLocationx] = x;
                    CarInfo[carid][cLocationy] = y;
                    CarInfo[carid][cLocationz] = z;
                    CarInfo[carid][cAngle] = a;
                    CarInfo[carid][cInterior] = GetPlayerInterior(playerid);
                    CarInfo[carid][cVirWorld] = GetPlayerVirtualWorld(playerid);
                    CarInfo[carid][cImpounder] = 1;
                    CarInfo[carid][cImpounderP] = preco;
                    format(string, sizeof(string), "[AV] HQ: %s %s apreendeu o veнculo de %s[Impounder: %d] no estacionamento. **", GetPlayerCargo(playerid), GetPlayerNameEx(playerid), CarInfo[carid][cOwner], CarInfo[carid][cImpounderP]);
                    SendFamilyMessage(1, 0x8D8DFFAA, string);
                    OnPropUpdate(4,carid);

                    DestroyVehicle(carid);
                    ownedcar[carid] = AddStaticVehicleEx(CarInfo[carid][cModel],CarInfo[carid][cLocationx],CarInfo[carid][cLocationy],CarInfo[carid][cLocationz]+1.0,CarInfo[carid][cAngle],CarInfo[carid][cColorOne],CarInfo[carid][cColorTwo],60000);
                    SetVehicleNumberPlate(carid, CarInfo[carid][cCode]);
                    if(CarInfo[carid][cPaintjob] != 999)
                    {
                        ChangeVehiclePaintjob(carid, CarInfo[carid][cPaintjob]);
                    }
                    LinkVehicleToInterior(carid, CarInfo[carid][cInterior]);
                    SetVehicleVirtualWorld(carid, CarInfo[carid][cVirWorld]);
                    SetVehicleModifications(carid);
                    PutPlayerInVehicle(playerid, carid, 0);
                    new year, month,day;
                    getdate(year, month, day);
                    new hour, minute;
                    gettime(hour,minute);
                    format(string, sizeof(string), "%s apreendeu o carro ID ( %d/%d/%d - %d:%d )\r\n", GetPlayerNameEx(playerid),carid,year, month, day,hour, minute);
                    ApreenderLog(string);
                    return 1;
                }
                else
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Nгo estб autorizado a usar este comando !");
                    return 1;
                }
            }
            SendClientMessage(playerid, COLOR_GREY, "  AAAA !");
            return 1;
        }
    }
Reply
#8

Tira a linha que manda a mensagem "AAAA !" e fim de papo ¬¬'
Reply
#9

Desculpe, o comando nгo funciona, ele aprece a msg AAA e n funciona
Reply
#10

pawn Код:
if(PlayerInfo[playerid][pAdmin] < 1)
{
    if(IsAnOwnableCar(carid))
    {
O cуdigo contido dentro de uma dessas duas condiзхes nгo й executado.
Verifique se as condiзхes para que o comando seja executado sejam verdadeiras.
Reply


Forum Jump:


Users browsing this thread: 2 Guest(s)