GetVehicleComponentInSlot NL
From SA-MP Wiki
GetVehicleComponentInSlot
Beschrijving:
Returns de geïnstalleerde component ID van een voertuig in het aangegeven slot.
(voertuig id, slot)
voertuig id | Voertuig om na te gaan voor het onderdeel. |
slot | Het 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.
- AddVehicleComponent: Add a component to a vehicle.
- GetVehicleComponentType: Check the type of component via the ID.
Related Callbacks
The following callbacks might be useful, as they're related to this function in one way or another.
- OnVehicleMod: Called when a vehicle is modded.
- OnEnterExitModShop: Called when a vehicle enters or exits a mod shop.