Skip to content

New Carcols (Custom vehicle colours)

KaiQ edited this page Jan 30, 2026 · 2 revisions

Carcols

This feature allows you have provide particular color combinations for your vehicle outside carcols.dat.

🧾 Configuration

A JSONC file contains the following fields:

  • "carcols" – The main object.
    • "colors" – A list of RGB color values.
    • "variations" – A list of color combinations using indices from the color list.

Example

{
  "carcols": {
    "colors": [
      { "red": 255, "green": 0, "blue": 0 },     // Index 0
      { "red": 0, "green": 255, "blue": 0 },     // Index 1
      { "red": 0, "green": 0, "blue": 255 }     // Index 2
    ],
    "variations": [
      { "primary": 0, "secondary": 0, "tertiary": 0, "quaternary": 0 },
      { "primary": 1, "secondary": 0, "tertiary": 0, "quaternary": 0 },
      { "primary": 2, "secondary": 0, "tertiary": 0, "quaternary": 0 },
      { "primary": 2, "secondary": 0, "tertiary": 0, "quaternary": 0 },
      { "primary": 1, "secondary": 0, "tertiary": 0, "quaternary": 0 },
      { "primary": 2, "secondary": 0, "tertiary": 0, "quaternary": 0 },
      { "primary": 0, "secondary": 0, "tertiary": 0, "quaternary": 0 },
      { "primary": 1, "secondary": 0, "tertiary": 0, "quaternary": 0 }
    ]
  }
}

Clone this wiki locally