Installation

Dependencies

QBCore Framework


How to install

Drag the script in your folder & restart the server

Make sure you configure everything in your likeness


Config.WeaponList & Config.ExtraList

Use both categories to sort your Crafting Items

Config.WeaponList = {
    -- Add Crafting Item here
}

Config.WeaponList = {
    -- Add Crafting Item here
}

You can easily add as many Crafting Items as you want

-- Example
[1] = {
        Label = "Pistol",                -- Item Label
        CraftingItem = "weapon_pistol",  -- Item Name      
        Amount = 1,
        Duration = 2*10000,              -- 20sek
        RequiredItems = {
            { Item = "metalscrap", Amount = 30 },
            { Item = "steel", Amount = 15 },
            { Item = "rubber", Amount = 15 },
        }
    },

Required Items can be added as much as you want

RequiredItems = {
            { Item = "metalscrap", Amount = 30 },
            { Item = "steel", Amount = 15 },
            { Item = "rubber", Amount = 15 },
        }

Last updated