Skip to content

PedCols

Grinch_ edited this page Sep 5, 2025 · 2 revisions

Available from ModelExtras v2.1+

🧬 VCS PedCols

This module enables randomized selection of pedestrian clothing and skin colors in VCS. Each material layer (Primary, Secondary, etc.) supports multiple RGB presets for dynamic variation.

🎨 Material Colors

Layer RGB Values
Primary R: 0, G: 255, B: 60
Secondary R: 175, G: 0, B: 255
Tertiary R: 255, G: 255, B: 0
Quaternary R: 255, G: 0, B: 255

These are base reference colors. Runtime selections are randomized from the JSON pool below.

🧾 JSON Configuration

"pedcols": {
    "primary": [
        [255, 0, 0],
        [0, 255, 0],
        [0, 0, 255]
    ],
    "secondary": [
        [255, 0, 0],
        [0, 255, 0],
        [0, 0, 255],
        [255, 255, 255]
    ],
    "tertiary": [
        [0, 0, 255],
        [192, 192, 192]
    ],
    "quaternary": [
        [255, 255, 0],
        [0, 255, 255]
    ]
}
Clone this wiki locally