Zum Inhalt springen
BRABO CustomsBRABO CUSTOMS

Config reference

This page provides a detailed reference for every property you can use in a vehicle configuration file.


Lighting Properties

All lighting properties accept an array of extra IDs. The extras are toggled on/off when the corresponding feature is activated.

PropertyDescriptionUI Button
blauwMain blue emergency lights. Acts as master switch for sirens.Yes
directLinksTraffic adviser pointing left.Yes
directCenterTraffic adviser center/warning pattern.Yes
directRechtsTraffic adviser pointing right.Yes
steadyBlueCruise / steady blue lights.Yes
steadyWhiteCombined work / scene lights.Yes
steadyWhiteLeftLeft-side work lights (independent).Yes
steadyWhiteRightRight-side work lights (independent).Yes
pitjeBeacon / roof-mount light.Yes
sfSirene flashers, extras that activate only when the siren is running.No (automatic)

Removing a property entirely from the config hides the corresponding button in the UI. Setting it to an empty array {} keeps the button visible but the toggle won't affect any extras (useful for blauw when relying on native siren lighting).


Siren Properties

PropertyTypeDescriptionUI Button
sirenestringMain siren preset name. Set to 'geen' to disable.Yes
DualsirenestringPowerCall / dual siren preset name. Omit to hide button.Yes
RumblesirenestringRumbler siren preset name. Set to 'geen' or omit to disable.Yes

Behavioral Options

PropertyTypeDefaultDescription
muteSirenDuringHornstringnilSet to 'true' to mute the main siren while the horn key is held. The siren resumes automatically when the horn is released.
excludeSiren{string...}{}Array of light type names (e.g., 'pitje', 'steadyBlue') that should not trigger the native GTA siren effect when toggled.

Unique Groups

PropertyTypeDescription
uniquetableA table where each key is a light type name and the value is an array of extra IDs. When any light type in this group is activated, all other types in the group are deactivated first.

Example:

unique = {
    directLinks = {3, 4},
    directRechts = {5, 6},
    directCenter = {7, 8},
}

Activating directLinks will turn off extras {5,6} and {7,8} before activating {3,4}.