💡Installation

  • Download & Extract

    • Obtain the script (e.g., from Tebex).

    • Place it in your resources directory under a folder like beekeeping_script.

  • Add to Server Config

    ensure beekeeping_script
    • Replace beekeeping_script with your folder’s actual name if different.

QS or QB Inventory (items.lua)
['scraper'] = {
    ['name'] = 'scraper',
    ['label'] = 'Scraper',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'fork.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common', -- epic, legendary, common
    ['description'] = 'A tool used for scraping surfaces.'
},

['hive'] = {
    ['name'] = 'hive',
    ['label'] = 'Beehive',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'haus.png',
    ['unique'] = true,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'A hive used for keeping bees.'
},

['forestscanner'] = {
    ['name'] = 'forestscanner',
    ['label'] = 'Placement Scanner',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'map.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'A device used to scan for suitable hive placement.'
},

['emptyhoneyjar'] = {
    ['name'] = 'emptyhoneyjar',
    ['label'] = 'Empty Honey Jar',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'honeyjar.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'An empty jar ready to be filled with honey.'
},

['beehiveframe'] = {
    ['name'] = 'beehiveframe',
    ['label'] = 'Beehive Frame',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'beeframe.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'A removable frame for a beehive.'
},

['beekeeper_suit'] = {
    ['name'] = 'beekeeper_suit',
    ['label'] = 'Beekeeper Suit',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'suit.png',
    ['unique'] = true,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'Protective clothing worn by beekeepers.'
},

['bees'] = {
    ['name'] = 'bees',
    ['label'] = 'Bees',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'bees.png',
    ['unique'] = true,
    ['useable'] = false,
    ['rare'] = 'common',
    ['description'] = 'A colony of bees.'
},

['dirtyhoney'] = {
    ['name'] = 'dirtyhoney',
    ['label'] = 'Dirty Honey',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'dirty-honey.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'Unprocessed honey containing impurities.'
},

['honeyjar'] = {
    ['name'] = 'honeyjar',
    ['label'] = 'Honey Jar',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'honeyjar.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'A jar filled with sweet honey.'
},

['cleanhoney'] = {
    ['name'] = 'cleanhoney',
    ['label'] = 'Clean Honey',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'collected-honey-image.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'Filtered and clean honey, ready for use.'
},

['spatula'] = {
    ['name'] = 'spatula',
    ['label'] = 'Spatula',
    ['weight'] = 1,
    ['type'] = 'item',
    ['ammotype'] = nil,
    ['image'] = 'fork.png',
    ['unique'] = false,
    ['useable'] = true,
    ['rare'] = 'common',
    ['description'] = 'A tool used for scraping and spreading.'
},

Last updated