Installation Guide
Dependencies
Dependency
Description
qb-core / qbx_core or es_extended
Framework
qb-target / qtarget / ox_target
sd_lib
Important Library
ox_lib
Important Library
Installation Steps
1. Add Items
Open
items.lua: Navigate toox_inventory/data/items.lua.Add the Following Items: Insert the following code into the
items.luafile:["powersaw"] = { label = "Power Saw", weight = 2500, stack = true, close = true, description = "A powerful tool designed for cutting wood, metal, and other materials with precision and ease.", client = { image = "powersaw.png", } }, ["bottle_cap"] = { label = "Bottle Cap", weight = 1, stack = true, close = false, description = "A small metallic cap from a bottle. Seems insignificant, but collectors might find it valuable.", client = { image = "bottle_cap.png", } },
Open
items.lua: Navigate toqb-core/shared/items.lua.Add the Following Items: Insert the following code into the
items.luafile:["powersaw"] = {["name"] = "powersaw", ["label"] = "Power Saw", ["weight"] = 2500, ["type"] = "item", ["image"] = "powersaw.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = "A powerful tool designed for cutting wood, metal, and other materials with precision and ease."}, ["bottle_cap"] = {["name"] = "bottle_cap", ["label"] = "Bottle Cap", ["weight"] = 1, ["type"] = "item", ["image"] = "bottle_cap.png", ["unique"] = false, ["useable"] = false, ["shouldClose"] = false, ["combinable"] = nil, ["description"] = "A small metallic cap from a bottle. Seems insignificant, but collectors might find it valuable."},
Import the
items.sqlfile into your database in the [SQL]/ESX directory.
2. Copy Images
Copy the corresponding item images to the images folder of your inventory
Last updated
