GetVehicleCustomTires
Returns if vehicle has custom tires.
- vehicle: parameter input should be in Vehicle type
NOTE: This function returns the status in bool type.
{{#tag:syntaxhighlight| bool hasCustomTires = Vehicle.GetVehicleCustomTires(vehicle); if(hasCustomTires) {
//Vehicle has custom tires..
} |lang=csharp}} }}