Page cover

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

  1. Open items.lua: Navigate to ox_inventory/data/items.lua.

  2. 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",
        }
    },
    
    ["bee-smoker"] = {
        label       = "Bee Smoker",
        weight      = 1500,
        stack       = false,
        description = "A handheld smoker used to calm bees, making bee management safer and easier.",
        consume     = 0,
        client = {
            image = "bee-smoker.png",
        }
    },

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