note Help Needed
This wiki is the result of an ongoing community effort — thank you all for helping!
If you want to provide changes to this page then please click here.
VehicleCanHaveComponent
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Is the component legal on the vehicle model?
Name | Description |
---|---|
modelid | Vehicle Model ID |
component | ID of the component to check. |
Returns
true - The component is legal on the vehicle.
false - The component is illegal on the vehicle.
Examples
new vehicleid = GetPlayerVehicleID(playerid);
if (VehicleCanHaveComponent(GetVehicleModel(vehicleid), 1010))
{
SendClientMessage(playerid, 0x00FF00FF, "Nitro is legal on this vehicle.");
}
else
{
SendClientMessage(playerid, 0xFF0000FF, "Nitro is illegal on this vehicle.");
}
Related Functions
- AddVehicleComponent: Add a component to a vehicle.
- RemoveVehicleComponent: Remove a component from a vehicle.
- GetVehicleComponentInSlot: Check what components a vehicle has.
- GetVehicleComponentType: Check the type of component via the ID.