βš™οΈConfiguration

Detailed example and explanation of the main settings in Config.lua:

Config = {
    Framework = "auto", -- auto, esx, qb
    Language = "en",    -- en, de, fr, es, pt
    useProp = true,     -- Show physical props in warehouse
    UseCustomNotify = false, -- Enable custom notification system
    UseCustomHelpNotify = false,

    Blip = {
        center = {
            coord = vec3(1209.6906, -3158.4563, 5.5277),
            label = "Cargo Center",
            sprite = 351, color = 10, scale = 0.8, visible = true
        }
    },

    Npc = {
        active = true,
        coord = vec4(1209.6906, -3158.4563, 4.5277, 88.9495),
        npc = "s_m_y_dockwork_01",
    },

    Order = { min = 13, max = 20 },

    Vehicle = {
        model = "mule2",
        coords = {
            vec4(1246.2134, -3155.8660, 5.8891, 269.7586),
            vec4(1246.2725, -3148.8079, 5.8916, 270.4080),
        },
    },

    DeliveryPoints = {
        vec4(-1880.0110, -606.1127, 17.9222, 135.1174),
        vec4(773.7598, -149.9515, 74.6219, 150.8682),
        -- Additional locations...
    },

    Sections = {
        ["food_drinks"] = {
            prop = "ex_prop_crate_tob_bc",
            coord = vec3(1213.3793, -3195.9912, 4.5279),
            rotation = vec3(0, 0, 90),
            content = {
                ["bread"] = {label = "Bread", price = 20},
                ["apple"] = {label = "Apple", price = 10},
            }
        },
        -- Additional sections...
    },
}

Last updated