Config

Client config

5s_tuningmenu/config/client.lua

ConfigCl = {
    DefaultZoom = 0.3,
    -- Must be an vector4, for vehicle to set it's heading properly.
    InteriorVehicleCoordinates = vector4(-2203.2332, 1122.4052, -23.2586, 326.7576)
}

Server config

5s_tuningmenu/config/server.lua

ConfigSv = {
    BusinessPercent = 30,
    WorkerPercent = 10,

    CompareDistanceOnPayment = true,
    MaxDistance = 25.0
}

Shared config

5s_tuningmenu/config/shared.lua

ConfigSh = {
    MechanicJobNames = {
        ['mechanic'] = true
    },

    ProjectsEnabled = true,
    -- Add properties names to skip when importing a project (e.g. 'nitrous').
    -- Properties are being gathered by ox_lib `getVehicleProperties` function.
    ProjectVehiclePropertiesToSkip = {}
}

Prices config

5s_tuningmenu/data/modPrices.lua

ModPrices = {
    modSpoilers = 2000,
    modFrontBumper = 1250,
    modRearBumper = 1250,
    modHorns = 500,

    modFrontWheels = 2000,
    wheels = 2000,

    modRoof = 750,
    modGrille = 650,
    modHood = 550,
    modFrame = 650,
    modSideSkirt = 450,
    modLivery = 800,

    windowTint = 1000,
    licensePlateDecor = 200,

    modExhaust = 1100,
    modXenon = 800,
    extras = 200,

    neon = 500,
    
    -- Vehicle colors
    ["0"] = 500, -- Primary
    ["1"] = 500, -- Secondary
    ["2"] = 500, -- Pearleascent
    ["3"] = 500, -- Wheels
    ["4"] = 500, -- Xenons
    ["5"] = 500, -- Neons
    ["6"] = 500  -- Tyre Smoke
}

Last updated