> For the complete documentation index, see [llms.txt](https://mscripts.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://mscripts.gitbook.io/docs/qbcore/illegal/qb-mini-robberys/config.md).

# Config

{% tabs %}
{% tab title="config.lua" %}

```lua
Config = {}

Config.CoreName = "qb-core" -- Your qb-core folder name
Config.Inventory = "qb" -- "qb" or "ox"
Config.Target = "qb" -- "qb" or "ox" 

Config.LevelSystem = {
    [1] = { xp = 0 }, -- Level 1
    [2] = { xp = 100 }, -- Level 2
    [3] = { xp = 250 }, -- Level 3
}

Config.Cooldown = {
    enable = true, -- Enable cooldown for each player?
    time = 60, -- 1 minute
}

Config.Robberys = {
    ["ParkingMeter"] = {
        EnableRobbery = true, -- Enable this robbery?
        EnableMinigame = true, -- Enable mini-game?
        Minigame = { circles = 2, time = 20 }, -- Settings of minigame
        Fingerprint = true, -- Configuration inside the config_functions.lua
        Props = { -- List of possible props ( if you use ox replace this numbers with the prop name ) prop_parking_hut_2 + prop_parknmeter_01
            304890764,
            -1940238623
        },
        Progressbar = { time = 5000, label = "Stealing 24 parking..." }, -- Settings to progressbar
        Animation = { animDict = "mini@repair", anim = "fixing_a_ped" }, -- Settings to animations
        Target = { label = "Steal 24h Parking", icon = "fa-solid fa-hand"}, -- Settings to target
        CopsNeeded = { enable = false, copsAmount = 2, copsJobs = {"police", "lspd"}},
        CallingCops = { enable = true, chance = 50 }, -- Configuration inside the config_functions.lua
        CashReward = { enable = true, min = 20, max = 150, rewardType = "cash" }, -- Configuration to receive cash or not
        xpEarn = { min = 2, max = 4 },
        Rewards = {
            [1] = { -- Level 1
                [1] = { item = "phone",         amount = math.random(1,2), chance = 60 },
                [2] = { item = "metalscrap",    amount = math.random(1,2), chance = 60 },
                [3] = { item = "steel",         amount = math.random(1,2), chance = 60 },
                [4] = { item = "glass",         amount = math.random(1,2), chance = 60 },
            },
            [2] = { -- Level 2
                [1] = { item = "phone",         amount = math.random(1,2), chance = 60 },
                [2] = { item = "metalscrap",    amount = math.random(1,2), chance = 60 },
                [3] = { item = "steel",         amount = math.random(1,2), chance = 60 },
                [4] = { item = "glass",         amount = math.random(1,2), chance = 60 },
                [5] = { item = "lockpick",      amount = math.random(1,2), chance = 20 },
            },
        }
    },
    ["FoodShelf"] = {
        EnableRobbery = true, -- Enable this robbery?
        EnableMinigame = true, -- Enable mini-game?
        Minigame = { circles = 2, time = 20 }, -- Settings of minigame
        Fingerprint = true, -- Configuration inside the config_functions.lua
        Props = { -- List of possible props ( if you use ox replace this numbers with the prop name ) v_ret_247shelves01 + v_ret_247shelves02 + v_ret_247shelves05 + v_ret_247shelves04 + v_ret_247_donuts
            -54719154,
            -220235377,
            1437777724,
            643522702,
            1421582485,
        },
        Progressbar = { time = 5000, label = "Stealing shelf..." }, -- Settings to progressbar
        Animation = { animDict = "mini@repair", anim = "fixing_a_ped" }, -- Settings to animations
        Target = { label = "Steal Shelft", icon = "fa-solid fa-hand"}, -- Settings to target
        CopsNeeded = { enable = true, copsAmount = 2, copsJobs = {"police", "lspd"}},
        CallingCops = { enable = true, chance = 50 }, -- Configuration inside the config_functions.lua
        CashReward = { enable = true, min = 20, max = 150, rewardType = "cash" }, -- Configuration to receive cash or not
        xpEarn = { min = 2, max = 4 },
        Rewards = {
            [1] = { -- Level 1
                [1] = { item = "tosti",             amount = math.random(1,2), chance = 60 },
                [2] = { item = "twerks_candy",      amount = math.random(1,2), chance = 60 },
                [3] = { item = "snikkel_candy",     amount = math.random(1,2), chance = 60 },
                [4] = { item = "sandwich",          amount = math.random(1,2), chance = 60 },
            },
            [2] = { -- Level 2
                [1] = { item = "beer",              amount = math.random(1,2), chance = 60 },
                [2] = { item = "whiskey",           amount = math.random(1,2), chance = 60 },
                [3] = { item = "vodka",             amount = math.random(1,2), chance = 60 },
                [4] = { item = "wine",              amount = math.random(1,2), chance = 60 },
            },
        }
    },
}
```

{% endtab %}

{% tab title="functions.lua" %}

```lua
function Notify(msg, type, time)
    if type == "primary" then 
        QBCore.Functions.Notify(msg, "primary", time)
    end
    if type == "success" then
        QBCore.Functions.Notify(msg, "success", time)
    end
    if type == "error" then
        QBCore.Functions.Notify(msg, "error", time)
    end
end

-- Function to add fingerprints
function Fingerprint(plyCoords)
    TriggerServerEvent("evidence:server:CreateFingerDrop", plyCoords)
end

-- Function to calling the cops
function CallingCops(plyCoords)
    -- exports['ps-dispatch']:SuspiciousActivity()
end
```

{% endtab %}
{% endtabs %}
