GetVehicleComponentType

From SA-MP Wiki

Jump to: navigation, search


GetVehicleComponentType was added in SA-MP 0.3a This function was added in SA-MP 0.3a and will not work in earlier versions!


Description:

Find out what type of component a certain ID is.


Parameters:
(component)
componentThe component ID to check.


Return Values:

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


Example:

public OnVehicleMod(playerid, vehicleid, componentid)
{
    new componentType = GetVehicleComponentType(componentid);
 
    if(componentType != -1)
    {
        new clientMessage[41];
 
        format(clientMessage, sizeof(clientMessage), "You have modified your vehicle on slot %i", componentType);
        SendClientMessage(playerid, 0xFFFFFFFF, clientMessage);
    }
    else
    {
        SendClientMessage(playerid, 0xFF0000FF, "The component is invalid.");
    }
 
    return 1;
}

Related Functions

The following functions may be useful, as they are related to this function in one way or another.


Related Callbacks

The following callbacks might be useful, as they're related to this function in one way or another.

Personal tools
Navigation
Toolbox
In other languages