28.11.2009, 19:08
I make more cars but when i add then it say that im stealing hospital cars... How i make new id for then? (Using LARP)
|
Originally Posted by dice7
Ask in the larp topic
|
public IsAnAmbulance(carid)
public IsAnAmbulance(carid)
{
if((carid >= 52) && (carid <= 55))
{
return 1;
}
return 0;
}
public IsAnAmbulance(carid)
{
if((carid >= 54) && (carid <= 57))
{
return 1;
}
return 0;
}
public IsAnAmbulance(car)
{
new model = GetVehicleModel(car);
if(model == 416 || model == 407 || model == 544) return true;
return false;
}