Job Garage

πŸ“„ Config file: shared/garage_config.lua

Configure the vehicles available in the job garage and the visual settings for garage interaction points.


Job Vehicles

Config.JobVehicles = {
    { model = 'flatbed', label = 'Braton Flatbed' },
}

List the vehicles that mechanics can spawn from the job garage.

Parameter
What it does

model

The spawn name of the vehicle.

label

The display name shown in the garage menu.


Garage Settings

Config.GarageSettings = {
    spawnCoordsOffset = vector3(0.0, 0.0, 0.0),
    menuTitle = "Job Garage",
    marker = {
        enabled = true,
        type = 36,
        size = vector3(1.5, 1.5, 1.5),
        color = { r = 0, g = 140, b = 255, a = 150 }
    }
}
Setting
What it does

spawnCoordsOffset

An offset applied to the center of the garage zone when spawning a vehicle, if no specific spawn point is defined.

menuTitle

The header text for the garage menu.

marker

Configuration for the floor marker shown at garage points.

Last updated