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
Props
Bzzz Props
or NoPixel Props
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 (Basic) ["bee-honey"] = { label = "Bee Honey", weight = 1000, stack = true, close = true, description = "Pure honey harvested directly from the hive, rich in natural sweetness.", consume = 0, client = { image = "bee-honey.png", } }, -- Chiliad Honey ["chiliad-honey"] = { label = "Chiliad Honey", weight = 1000, stack = true, close = true, description = "A robust honey infused with the essence of Chiliad's wild flora.", consume = 0, client = { image = "chiliad-honey.png", } }, -- Green Hills Honey ["green-hills-honey"] = { label = "Green Hills Honey", weight = 1000, stack = true, close = true, description = "Delicate honey crafted from the abundant clover fields of Green Hills.", consume = 0, client = { image = "green-hills-honey.png", } }, -- Alamo Honey ["alamo-honey"] = { label = "Alamo Honey", weight = 1000, stack = true, close = true, description = "Exquisite honey sourced from the serene Alamo Grove, known for its unique taste.", consume = 0, client = { image = "alamo-honey.png", } }, -- Bee Wax ["bee-wax"] = { label = "Bee Wax", weight = 500, stack = true, close = true, description = "Versatile beeswax, perfect for crafting candles, cosmetics, and artisanal goods.", consume = 0, client = { image = "bee-wax.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-worker"] = { label = "Worker Bee", weight = 1000, stack = true, close = true, description = "", consume = 0, client = { image = "bee-worker.png", } }, ["thymol"] = { label = "Thymol", weight = 500, stack = true, close = true, description = "A natural treatment derived from thyme oil, effective in combating hive infections and supporting bee health.", consume = 0, client = { image = "thymol.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'] = 'Bee Honey', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'bee-honey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pure honey harvested directly from the hive, rich in natural sweetness.'}, ['chiliad-honey'] = {['name'] = 'chiliad-honey', ['label'] = 'Chiliad Honey', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'chiliad-honey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "A robust honey infused with the essence of Chiliad's wild flora."}, ['green-hills-honey'] = {['name'] = 'green-hills-honey', ['label'] = 'Green Hills Honey', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'green-hills-honey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Delicate honey crafted from the abundant clover fields of Green Hills."}, ['alamo-honey'] = {['name'] = 'alamo-honey', ['label'] = 'Alamo Honey', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'alamo-honey.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Exquisite honey sourced from the serene Alamo Grove, known for its unique taste."}, ['bee-wax'] = {['name'] = 'bee-wax', ['label'] = 'Bee Wax', ['weight'] = 500, ['type'] = 'item', ['image'] = 'bee-wax.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = "Versatile beeswax, perfect for crafting candles, cosmetics, and artisanal goods."}, ['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-worker'] = {['name'] = 'bee-worker', ['label'] = 'Worker Bee', ['weight'] = 1000, ['type'] = 'item', ['image'] = 'bee-worker.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = ''}, ['thymol'] = {['name'] = 'thymol', ['label'] = 'Thymol', ['weight'] = 500, ['type'] = 'item', ['image'] = 'thymol.png', ['unique'] = false, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A natural treatment derived from thyme oil, effective in combating hive infections and supporting bee health.'},
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