πŸ“Config

Pay close attention, for this example we are using the job "ammuone" you will need to create a new job for each ammunition in qb-core/shared/jobs.lua

Basic Config Settings

Config.OfflineTax = 0.7 -- The multiplier to calculate tax, if you want 15% tax it would be 0.15

Config.RegisterWeapon = true -- For Offline Sales (PS-MDT Only)

Config.HapticLogger = false -- Unreleased

Setting up location blips

Config.Blips = {
    ["ammuone"] = { -- Set this to the job name
        name = "Ammunation",
        location = vector3(11.59, -1106.31, 29.11),
        sprite = 110,
        scale = 0.6,
        color = 0,
        shortrange = true
    },
}

Management Locations (Different to QB-Management you will need to set that up yourself)

Config.Management = {
    ["ammuone"] = {
        job = "ammuone",
        location = vector3(9.17, -1110.97, 29.28),
        icon = "far fa-clipboard",
        label = "Management",
        distance = 2,
        width = 0.5,
        depth = 0.5,
        heading = 0,
    },
}

What parts they get from delivery runs.

Pickup Locations for Parts

Crafting Locations

Crafting Recipes

items to be in the employee shop

Cash Register Locations

NPC Sales

Last updated