Перейти к основному содержимому

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

NameDescription
vehicleidThe ID of the vehicle.
&colour1A variable in which to store the colour1 value, passed by reference.
&colour2A 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;
}