DestroyVehicle after it die but in DM !
#4

pawn Код:
new DM_Cars[2];
init
pawn Код:
DM_Cars[0] = AddStaticVehicleEx(... // first car
...
...
...
DM_Cars[1] = AddStaticVehicleEx(... // last dm car
pawn Код:
public OnVehicleDeath(vehicleid, killerid)
{
    if(DM_Cars[0] <= vehicleid <= DM_Cars[1])
        DestroyVehicle(vehicleid);
    return 1;
}
Reply


Messages In This Thread

Forum Jump:


Users browsing this thread: 1 Guest(s)