Syniq Documentation
Discord Server
  • Welcome
  • Scripts
    • Weed System
      • Inventory Setup
      • Guides
        • Adding Seeds
        • Adding Shops
Powered by GitBook
On this page
  • OX Inventory
  • QB Inventory
  1. Scripts
  2. Weed System

Inventory Setup

Here is all supported inventories setup guild

PreviousWeed SystemNextGuides

Last updated 4 days ago

OX Inventory


Insert the code below into

["pot"] = {
	label = "Pot",
	weight = 500,
	stack = true,
},
["fertilizer"] = {
	label = "Fertilizer",
	weight = 1000,
	stack = true,
},
["distilledwater"] = {
	label = "Distilled Water",
	weight = 200,
	stack = true,
},
["herbicide"] = {
	label = "Herbicide",
	weight = 200,
	stack = true,
},
["canister"] = {
	label = "Canister",
	weight = 400,
	stack = true,
},
["shovel"] = {
	label = "Shovel",
	weight = 100,
	stack = true,
},
["weed_seed"] = {
	label = "Weed Seed",
	weight = 15,
	stack = true,
},
["weed_leaf"] = {
	label = "Weed Leaf",
	weight = 1,
	stack = true,
},

QB Inventory


pot = {name = 'pot', label = 'Pot', weight = 300, type = 'item', image = 'pot.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },
distilledwater = {name = 'distilledwater', label = 'Distilled Water 100ml', weight = 100, type = 'item', image = 'distilledwater.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },
fertilizer = {name = 'fertilizer', label = 'Quality Fertilizer 100g', weight = 100, type = 'item', image = 'fertilizer.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },
shovel = {name = 'shovel', label = 'Shovel', weight = 30, type = 'item', image = 'shovel.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },
herbicide = {name = 'herbicide', label = 'Herbicide', weight = 30, type = 'item', image = 'herbicide.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },
canister = {name = 'canister', label = 'Canister', weight = 30, type = 'item', image = 'canister.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },
weed_leaf = {name = 'weed_leaf', label = 'Weed Leaf', weight = 15, type = 'item', image = 'weed_leaf.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },
weed_seed = {name = 'weed_seed', label = 'Weed Seed', weight = 5, type = 'item', image = 'weed_seed.png', unique = false, usable = false, shouildClose = true, combinable = nil, description = '' },

Insert the code below into

data/items.lua
shared/items.lua