[AJUDA] Excluir veнculos desocupados.
#2

Isto deve resolver o seu problema :


Primeiro instale a funзгo IsVehicleEmpty que se encontra nesta pбgina do tуpico Cуdigos Ъteis : https://sampforum.blast.hk/showthread.php?pid=1065065#pid1065065



Em seguida, coloque :


pawn Код:
//No OnPlayerCommandText:

if(!strcmp(cmdtext, "/excluirvd", true))
    {
        for(new x = 1; x < MAX_VEHICLES; x++)
        {
            if(IsVehicleEmpty(x))
            {
                DestroyVehicle(x);
            }
        }
        SendClientMessageToAll(0x33CCFFAA, "Carros nгo-usados foram excluнdos !");
        return true;
    }


Espero ter ajudado .
Reply


Messages In This Thread
[AJUDA] Excluir veнculos desocupados. - by junioor - 25.11.2011, 14:02
Re: [AJUDA] Excluir veнculos desocupados. - by rjjj - 25.11.2011, 14:17
Re: [AJUDA] Excluir veнculos desocupados. - by Pharrel - 25.11.2011, 14:20

Forum Jump:


Users browsing this thread: 1 Guest(s)