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.
GetVehicleColours
warning
This function was added in omp v1.1.0.2612 and will not work in earlier versions!
Description
Gets the vehicle colours.
Parameters
Name | Description |
---|---|
vehicleid | The ID of the vehicle. |
&colour1 | A variable in which to store the colour1 value, passed by reference. |
&colour2 | A variable in which to store the colour2 value, passed by reference. |
Examples
public OnGameModeInit()
{
new vehicleid = CreateVehicle(560, 2096.1917, -1328.5150, 25.1059, 0.0000, 6, 0, 100);
new
colour1,
colour2;
GetVehicleColours(vehicleid, colour1, colour2);
// colour1 = 6
// colour2 = 0
return 1;
}
Related Functions
- ChangeVehicleColours: Change a vehicle's primary and secondary colors.