├── row-bee.rar └── README.md /row-bee.rar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RowDevelopment/qb-beehive/HEAD/row-bee.rar -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # qb-beehive 2 | NoPixel 3.5 Inspired Beehive Script QBCore 3 | 4 | # Thank you for choosing us <3 <3 5 | 6 | # Step 1: 7 | Go to qb-core/shared/items.lua folder and add them 8 | ["beehive"] = {["name"] = "beehive", ["label"] = "Beehive", ["weight"] = 5000, ["type"] = "item", ["image"] = "beehive.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""}, 9 | ["beequeen"] = {["name"] = "beequeen", ["label"] = "Bee Queen", ["weight"] = 100, ["type"] = "item", ["image"] = "beequeen.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""}, 10 | ["beeswax"] = {["name"] = "beeswax", ["label"] = "Beeswax", ["weight"] = 500, ["type"] = "item", ["image"] = "beeswax.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""}, 11 | ["honey"] = {["name"] = "honey", ["label"] = "Honey", ["weight"] = 500, ["type"] = "item", ["image"] = "honey.png", ["unique"] = false, ["useable"] = true, ["shouldClose"] = true, ["combinable"] = nil, ["description"] = ""}, 12 | 13 | # Step 2: 14 | Enter the row-beekeeping script and read the sql file. 15 | 16 | # Step 3: 17 | Throw the images in the Depencies section to the inventory/html/images section of your inventory. 18 | 19 | # Step 4: 20 | qb-target/init.lua Config.TargetModels 21 | Config.TargetModels = { 22 | ["BEE"] = { 23 | models = { 24 | "gate_beehive", 25 | "gate_beehive02", 26 | "gate_beehive03", 27 | }, 28 | options = { 29 | { 30 | event = "row-beekeeping:checkBeehive", 31 | icon = "fas fa-archive", 32 | label = "Check", 33 | }, 34 | }, 35 | distance = 1.5 36 | }, 37 | } 38 | 39 | # Step 5: 40 | After that, you can enter the game and start using it. Thank you again. 41 | 42 | # Row Development 43 | 44 | Support 45 | Discord: https://discord.gg/c9dS9ruDyV 46 | --------------------------------------------------------------------------------