[Pedido] procurando comando /destruirid
#1

Queria que me enviassem um cуdigo do comando /destruirid para samp 0.3z para colocar no gm.
O comando que tenho agora no cуdigo do servidor esta bugado "Foram encontrados mais carros no mesmo raio"

Код:
	if(!strcmp("/destruirid", cmdtext, true))
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAdmin] < 3)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo estб autorizado a usar este comando !");
                return 1;
            }
            if(admtrampando[playerid] < 1 && PlayerInfo[playerid][pAdmin] != 1342)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "Vocк nгo estб trabalhando! (/trabalhar)");
                return 1;
            }
            new counter = 0;
            new result;
            new plyName[MAX_PLAYER_NAME];
            GetPlayerName(playerid, plyName, MAX_PLAYER_NAME);
            for(new i; i != MAX_VEHICLES; i++)
            {
                new dist = ChecarveiculoBMG(5, playerid, i);
                if(dist)
                {
                    result = i;
                    counter++;
                }
            }
            switch(counter)
            {
                case 0:
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Nгo hб nenhum carro nesse raio!");
                }
                case 1:
                {
                    new name[MAX_PLAYER_NAME];
                    GetPlayerName(playerid, name, sizeof(name));
                    DestroyVehicle(result);
                    format(string, sizeof(string), "Vocк destruiu o veнculo ID:[%d]", result);
                    SendClientMessage(playerid, COLOR_GREY, string);
                    if(admtrampando[playerid] == 1 && admhide[playerid] == 1)
                    {
                        format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi destruido Por: Chuck_Norris", result);
                        ABroadCast(COLOR_YELLOW,string,1);
                    }
                    else
                    {
                        format(string, sizeof(string), "AdmAviso: Carro ID:[%d] foi destruido Por: %s", result, name);
                        ABroadCast(COLOR_YELLOW,string,1);
                    }
                }
                default:
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Foram encontrados mais de um carro nesse raio");
                }
            }
        }
        return 1;
    }
Reply
#2

o meu pelo menos ta funfando normal:

pawn Код:
if (strcmp(cmd, "/destruirid", true) == 0)
    {
        if(IsPlayerConnected(playerid))
        {
            if(PlayerInfo[playerid][pAdmin] < 3)
            {
                SendClientMessage(playerid, COLOR_GRAD1, "   Vocк nгo estб autorizado a usar este comando !");
                return true;
            }
            new counter = 0;
            new result;
            new plyName[MAX_PLAYER_NAME];
            GetPlayerName(playerid, plyName, MAX_PLAYER_NAME);
            for(new i; i != MAX_VEHICLES; i++)
            {
                new dist = ChecarveiculoBFC(5, playerid, i);
                if(dist)
                {
                    result = i;
                    counter++;
                }
            }
            switch(counter)
            {
                case 0:
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Nгo hб nenhum carro nesse raio!");
                }
                case 1:
                {
                    if(result < CAR_AMOUNT)
                    {
                        SendClientMessage(playerid, COLOR_GREY, "Vocк sу pode destruir veнculos criados");
                        return true;
                    }
                    new name[MAX_PLAYER_NAME];
                    GetPlayerName(playerid, name, sizeof(name));
                    Delete3DTextLabel(TextoCarros[result]);
                    DestroyVehicle(result);
                    format(string, sizeof(string), "Vocк destruiu o veнculo ID:[%d]", result);
                    SendClientMessage(playerid, COLOR_GREY, string);
                    CreatedCar --;
                }
                default:
                {
                    SendClientMessage(playerid, COLOR_GREY, "   Foram encontrados mais de um carro nesse raio");
                }
            }
        }
        return true;
    }
tem em base o PlayHappy ne! kkkkk
Reply
#3

Esse cуdigo esta a dar erro:

Код:
C:\Users\ivan mota\Desktop\servidor samp upgraded\samp03z_svr_R1_win32\samp03z_svr_R1_win32\gamemodes\RPG.pwn(30275) : error 017: undefined symbol "TextoCarros"
C:\Users\ivan mota\Desktop\servidor samp upgraded\samp03z_svr_R1_win32\samp03z_svr_R1_win32\gamemodes\RPG.pwn(30275) : warning 215: expression has no effect
C:\Users\ivan mota\Desktop\servidor samp upgraded\samp03z_svr_R1_win32\samp03z_svr_R1_win32\gamemodes\RPG.pwn(30275) : error 001: expected token: ";", but found "]"
C:\Users\ivan mota\Desktop\servidor samp upgraded\samp03z_svr_R1_win32\samp03z_svr_R1_win32\gamemodes\RPG.pwn(30275) : error 029: invalid expression, assumed zero
C:\Users\ivan mota\Desktop\servidor samp upgraded\samp03z_svr_R1_win32\samp03z_svr_R1_win32\gamemodes\RPG.pwn(30275) : fatal error 107: too many error messages on one line

Compilation aborted.Pawn compiler 3.2.3664	 	 	Copyright © 1997-2006, ITB CompuPhase


4 Errors.
Line 30275:
Код:
Delete3DTextLabel(TextoCarros[result]);
Reply
#4

Vei presta atenзгo ! Olha o code bem ! Declara isso ! "TextoCarros"
Reply
#5

Nгo deu Efeito, continua
Reply
#6

Ivan,vocк com certeza alterou o cуdigo do comando ou baixou um GM editado utilizando a base do PlayHappy pois o cуdigo que eu lhe passei й o cуdigo original do PlayHappy... da pra ver isso em algumas coisas como por exemplo

"if(admtrampando[playerid] == 1 && admhide[playerid] == 1)"
esses nomes admtrampando admhide e "new dist = Checarveiculo***(5, playerid, i);" sгo caracteristicos do PlayHappy entгo se vocк alterou esse comando volte o padrгo,caso tenha baixado o GM,baixe o PlayHappy

falando nisso por favor poste o code do comando /destruirveiculos aqui...
Reply
#7

https://sampforum.blast.hk/showthread.php?tid=470602
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)