Przejdź do głównej zawartości

GetVehicleComponentType

Description

Find out what type of component a certain ID is.

NameDescription
componentThe component ID to check.

Returns

The component slot ID of the specified component or -1 if the component is invalid.

Examples

public OnVehicleMod(playerid, vehicleid, componentid)
{
new
CARMODTYPE:componentType = GetVehicleComponentType(componentid);

if (componentType != CARMODTYPE_NONE)
{
new
string[64];

format(string, sizeof(string), "You have modified your vehicle on slot %i", componentType);
SendClientMessage(playerid, 0xFFFFFFFF, string);
}
else
{
SendClientMessage(playerid, 0xFF0000FF, "The component is invalid.");
}
return 1;
}