📃Configs

Config = {}

-- General Settings --
Config.AutoDatabase = true -- If true, the script gona install the database automatic
Config.Framework = "QBCore" -- "QBCore", "ESX"
Config.Core = "qb-core" -- Your core resource name, only for QBCore
Config.Display = "lation_ui" -- "ox_lib", "lation_ui"
-- General Settings --

-- Zones Settings --
Config.Zones = {
    checkZones = false, -- If true, the script will check if the player is in the zone to open the shop
    zones = {
        [1] = {
            blip = { enable = true, name = "Street shops", sprite = 52, color = 2, scale = 0.7 }, -- Blip settings
            middleCoords = vec3(2333.21, 2582.64, 46.67), -- Middle coords of the zone
            radius = 50.0, -- Radius of the zone
        }
    }
}
-- Zones Settings --

-- Shop Settings --
Config.RaidEnable = true -- If true, the shop can be raided
Config.RaidTime = 10000 -- Time in ms to raid the shop
Config.RaidJobs = { "police" } -- Jobs that can raid the shop
Config.ItemsBlocked = { -- Items that can't be sold in the shops
    "WEAPON_PISTOL",
}
-- Shop Settings --

-- Table Props --
Config.TableProps = { -- Props: https://gtahash.ru/objects/
    {label = "prop_table_03", model = "prop_table_03"},
    {label = "prop_table_04", model = "prop_table_04"},
    {label = "prop_chair_01", model = "prop_chair_01"},
    {label = "prop_tri_table_01", model = "prop_tri_table_01"},
    {label = "prop_protest_table_01", model = "prop_protest_table_01"},
    {label = "prop_astro_table_01", model = "prop_astro_table_01"},
    {label = "prop_astro_table_02", model = "prop_astro_table_02"},
}

Last updated