8000 GitHub - RijayJH/qw-crafting: QBCore Customizable Crafting System
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

RijayJH/qw-crafting

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

32 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

qw-scripts Banner

qw-scripts discord

https://dsc.gg/qw-scripts

qw-crafting

QBCore Customizable Crafting System

Preview

https://streamable.com/bmjxp0

Install

  • setup your inventory resource in the config under Config.Inventory
  • also update the inventory config in html/script.js
  • If you are going to be using qw_skills then you need to add the following config to the qw_skills Config.Skills in config file...
    'crafting',
  • follow the rest of the config to setup all of your crafting locations and items

Metadatas

If you would like a certain metadata to be added. Add to the config like the example below.

            ['electronickit'] = { -- Name of Item to Craft
                amount = 1, -- Amount of Item to Give to the Player
                name = 'Electronic Kit', -- Name of Item to Display on the UI
                skillRequired = 0, -- Skill Required to Craft Item
                metadata = {durability = 100, electricity = "true"}
                materialsNeeded = { -- Materials Needed to Craft Item
                    [1] = {
                        item = 'metalscrap', -- Name of Item Needed
                        amount = 50, -- Amount of Item Needed
                        label = 'Metalscrap'
                    },
                    [2] = {
                        item = 'plastic',
                        amount = 50,
                        label = 'Plastic'
                    },
                    [3] = {
                        item = 'aluminum',
                        amount = 50,
                        label = 'Aluminum'
                    },
                },
            },

About

QBCore Customizable Crafting System

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Lua 84.1%
  • JavaScript 10.9%
  • HTML 3.2%
  • CSS 1.8%
0