09.03.2015, 15:11
Sure
But you can do sth smarter and work with flags
So you always need only 2 cells
Greekz
But you can do sth smarter and work with flags
PHP код:
new SwatCars[2];
SwatCars[0] = CreateVehicle(...); //First swat car
CreateVehicle(...); //swat car
CreateVehicle(...); //swat car
CreateVehicle(...); //swat car
CreateVehicle(...); //swat car
CreateVehicle(...); //swat car
CreateVehicle(...); //swat car
CreateVehicle(...); //swat car
CreateVehicle(...); //swat car
SwatCars[1] = CreateVehicle(...); //Last swat car
if(SwatCars[0] <= vehicleid <= SwatCars[1])
{
//Here it is a SwatCar
}
Greekz