GetVehicleComponentInSlot NL

From SA-MP Wiki

Jump to: navigation, search

GetVehicleComponentInSlot

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


Beschrijving:

Returns de geïnstalleerde component ID van een voertuig in het aangegeven slot.


Parameters:
(voertuig id, slot)
voertuig idVoertuig om na te gaan voor het onderdeel.
slotHet onderdeel slot om na te gaan.


Retourneert:

Het geïnstalleerde onderdeel ID in het aangegeven slot.


Voorbeeld:

public OnPlayerCommandText(playerid, cmdtext[])
{
    if (!strcmp("/mijnspoiler", cmdtext) && IsPlayerInAnyVehicle(playerid))
    {
        new component;
        component = GetVehicleComponentInSlot(GetPlayerVehicleID(playerid), CARMODTYPE_SPOILER);
        if (component == 1049)
        {
            SendClientMessage(playerid,0xFFFFFFFF,"Je hebt een Alien spoiler geïnstalleerd op jouw Elegy!");
        }
    }
}

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