Installation Guide
Dependencies
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.lua
file:["bee-hive"] = { label = "Bee Hive", weight = 1000, stack = false, close = true, description = "", consume = 0, client = { image = "bee-hive.png", }, server = { export = 'sd-beekeeping.useBee-hive', } }, ["bee-honey"] = { label = "Honey", weight = 1000, stack = true, close = true, description = "", consume = 0, client = { image = "bee-honey.png", } }, ["bee-house"] = { label = "Bee House", weight = 1000, stack = false, close = true, description = "", consume = 0, client = { image = "bee-house.png", }, server = { export = 'sd-beekeeping.useBee-house', } }, ["bee-queen"] = { label = "Bee Queen", weight = 1000, stack = true, close = true, description = "", consume = 0, client = { image = "bee-queen.png", } }, ["bee-wax"] = { label = "Wax", weight = 1000, stack = true, close = true, description = "", consume = 0, client = { image = "bee-wax.png", } }, ["bee-worker"] = { label = "Worker Bee", weight = 1000, stack = true, close = true, description = "", consume = 0, client = { image = "bee-worker.png", } },
Open
items.lua
: Navigate toqb-core/shared/items.lua
.Add the Following Items: Insert the following code into the
items.lua
file:['bee-hive'] = {['name'] = 'bee-hive', ['label'] = 'Bee Hive', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'bee-hive.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''}, ['bee-honey'] = {['name'] = 'bee-honey', ['label'] = 'Honey', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'bee-honey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''}, ['bee-house'] = {['name'] = 'bee-house', ['label'] = 'Bee House', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'bee-house.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''}, ['bee-queen'] = {['name'] = 'bee-queen', ['label'] = 'Bee Queen', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'bee-queen.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''}, ['bee-wax'] = {['name'] = 'bee-wax', ['label'] = 'Wax', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'bee-wax.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''}, ['bee-worker'] = {['name'] = 'bee-worker', ['label'] = 'Worker Bee', ['weight'] = 1000, ['type'] =
Import the
items.sql
file into your database in the [SQL]/ESX directory.
2. Copy Images
Copy the corresponding item images to the images
folder of your inventory
3. Run the SQL
Simply run the SQL file named 'run_me.sql
' in the [SQL] directory.
Last updated