[AJUDA] Excluir veнculos desocupados.
#3

pawn Код:
if(!strcmp(cmd, "/excluirvid", true))
{
    new bool:Ocupado[MAX_VEHICLES];
    for(new i=0; i<MAX_PLAYERS; i++)
    {
        if(GetPlayerVehicleID(i) != INVALID_VEHICLE_ID)
            Ocupado[GetPlayerVehicleID(i)] = true;
    }
    for(new i=0; i<MAX_VEHICLES; i++)
    {
        if(!Ocupado[i])
            DestroyVehicle(i);
    }
    return 1;
}
@edit tinha um erro no codigo, ja concertei.
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)