Vehicle::setModColor2

From RAGE Multiplayer Wiki
Revision as of 00:08, 17 November 2022 by Ufteers (talk | contribs)

Changes the secondary paint type and color

MOD_COLOR_TYPE

const MOD_COLOR_TYPE = {
    MCT_METALLIC: 0,
    MCT_CLASSIC: 1,
    MCT_PEARLESCENT: 2,
    MCT_MATTE: 3,
    MCT_METALS: 4,
    MCT_CHROME: 5,
    MCT_CHAMELEON: 6 // only available on Gen9 platforms
    MCT_NONE: 7 // if this is set, the vehicle doesn't use mod colors, it uses the regular color system
};

color: number of the color

Syntax

vehicle.setModColor2(paintType, color);

Required Arguments

  • paintType: int
  • color: int

Return value

  • Undefined

Example

// todo

See also