Garages

data/garages.lua

You can create job-specific garages in this file.

NOTE: Any vehicle added to the vehicles list for a garage, must be defined in the data/vehicles.lua file.

local garages = {
    {
        coords = vector3(296.66, -605.01, 43.31),
        spawn = vector4(293.58, -605.80, 43.33, 61.88),
        
        jobs = { 
            ambulance = 0
        },

        vehicles = {
            "ambulance",
        }
    },
}

Last updated