Skip to main content
Config = {}

Config.Locale = 'en'
Config.CraftCooldown = 1000
Config.Debug = false
Config.SpawnProps = true
Config.UI = {}
Config.Webhook = {
    Enabled = false,
    URL = ""
}

-- Supported inventories: qb-inventory, ox_inventory, ps-inventory, qs-inventory
Config.Inventory = "qb-inventory"

-- Supported target systems: ox_target, qb-target
Config.TargetSystem = "qb-target"
-- Supported Notify systems okok, ud, qb, 
Config.NotifySystem = "ud"

Config.CraftingStations = {
    ['workbench'] = {
        label = "Workbench",
        coords = vector3(88.26, 486.64, 147.78),
        recipes = {"weapon_pistol", "weapon_knife"},
        prop = "prop_toolchest_01",
        size = vector3(1.0, 1.0, 1.0),
        heading = 0,
        blip = {enabled = true, sprite = 566, color = 3, label = "Workbench", scale = 0.7},
        jobs = {['police'] = true, ['mechanic'] = true},
    },
    ['chemistry'] = {
        label = "Chemistry Bench",
        coords = vector3(234.0, 567.0, 21.0),
        recipes = {"drug_meth", "drug_coke"},
        prop = "v_lab_ceilinglight",
        size = vector3(1.2, 1.2, 1.0),
        heading = 90,
        blip = {enabled = true, sprite = 403, color = 2, label = "Chemistry Bench", scale = 0.8},
        jobs = {},
    },
}

Config.Recipes = {
    ["weapon_pistol"] = {
        label = "Pistol",
        requirements = {["iron"] = 10,},
        amount = 1,
        time = 8000,
        icon = "pistol.png",
        description = "A basic pistol for protection.",
    },
    ["weapon_knife"] = {
        label = "Knife",
        requirements = {["iron"] = 5},
        amount = 1,
        time = 5000,
        icon = "knife.png",
        description = "A sharp knife.",
    },
    ["drug_meth"] = {
        label = "Meth",
        requirements = {["acetone"] = 5, ["lithium"] = 2},
        amount = 1,
        time = 10000,
        icon = "meth.png",
        description = "Illicit synthesized methamphetamine.",
    },
    ["drug_coke"] = {
        label = "Cocaine",
        requirements = {["coca_leaf"] = 5, ["acetone"] = 2},
        amount = 1,
        time = 10000,
        icon = "coke.png",
        description = "Illicit processed cocaine.",
    },
}