ox_inventory

Images:

  1. Go to dynyx_weed\images and copy all the images

  2. Locate the ox_inventory\web\images folder

  3. And paste all the images in there

Items:

  1. Copy the following code

  2. Go to the bottom of ox_inventory\data\items.lua

  3. Paste all the items before the last }

    ["plant_pot"] = {
		label = "Plant Pot",
		weight = 2500,
		close = false,
		stack = true,
		description = "A sturdy pot perfect for growing your weed plants.",
		client = {
		}
	},
	["plant_shovel"] = {
		label = "Shovel",
		weight = 2500,
		close = false,
		stack = true,
		description = "A small shovel for digging and preparing soil for planting.",
		client = {
		}
	},
	["plant_shears"] = {
		label = "Shears",
		weight = 2500,
		close = false,
		stack = true,
		description = "Sharp shears for trimming and harvesting your plants.",
		client = {
		}
	},
	["plant_fertilizer"] = {
		label = "Fertilizer",
		weight = 2500,
		close = false,
		stack = true,
		description = "High-quality fertilizer to boost your plant's growth.",
		client = {
		}
	},
	["plant_emptybag"] = {
		label = "Empty Baggie",
		weight = 2500,
		close = false,
		stack = true,
		description = "An empty baggie, perfect for packaging your dried buds.",
		client = {
		}
	},
	
	-- WEED SEEDS
	["seed_bluedream"] = {
		label = "Blue Dream Seed",
		weight = 500,
		close = true,
		stack = true,
		description = "A hybrid seed to grow the sweet, berry-flavored Blue Dream strain.",
		branch = "bluedream",
		server = {
			export = 'dynyx_weed.plantweedseed',
			image = "plant_seed.png",
		}
	},
	["seed_purplehaze"] = {
		label = "Purple Haze Seed",
		weight = 500,
		close = true,
		stack = true,
		description = "A vibrant seed to cultivate the psychedelic Purple Haze strain.",
		branch = "purplehaze",
		server = {
			export = 'dynyx_weed.plantweedseed',
			image = "plant_seed.png",
		}
	},
	["seed_glue"] = {
		label = "Gorilla Glue Seed",
		weight = 500,
		close = true,
		stack = true,
		description = "A sticky, powerful seed that grows into the potent Gorilla Glue strain.",
		branch = "glue",
		server = {
			export = 'dynyx_weed.plantweedseed',
			image = "plant_seed.png",
		}
	},
	["seed_bananakush"] = {
		label = "Banana Kush Seed",
		weight = 500,
		close = true,
		stack = true,
		description = "A tropical seed to produce the smooth, fruity Banana Kush strain.",
		branch = "bananakush",
		server = {
			export = 'dynyx_weed.plantweedseed',
			image = "plant_seed.png",
		}
	},
	
	-- HARVESTED BUDS
	["bud_bluedream"] = {
		label = "Blue Dream Bud",
		weight = 500,
		close = false,
		stack = true,
		description = "Dense Blue Dream buds with a sweet berry aroma and balanced effects.",
		buttons = {
			{
				label = 'Make into baggies - 5x Buds Required',
				action = function(slot)
					TriggerEvent('dynyx_weed:craftbaggy', 'bluedream')
				end
			},
		},
	},
	["bud_purplehaze"] = {
		label = "Purple Haze Bud",
		weight = 500,
		close = false,
		stack = true,
		description = "Vibrant Purple Haze buds with earthy flavors and an uplifting high.",
		buttons = {
			{
				label = 'Make into baggies - 5x Buds Required',
				action = function(slot)
					TriggerEvent('dynyx_weed:craftbaggy', 'purplehaze')
				end
			},
		},
	},
	["bud_glue"] = {
		label = "Gorilla Glue Bud",
		weight = 500,
		close = false,
		stack = true,
		description = "Sticky Gorilla Glue buds, rich in resin with heavy, relaxing effects.",
		buttons = {
			{
				label = 'Make into baggies - 5x Buds Required',
				action = function(slot)
					TriggerEvent('dynyx_weed:craftbaggy', 'glue')
				end
			},
		},
	},
	["bud_bananakush"] = {
		label = "Banana Kush Bud",
		weight = 500,
		close = false,
		stack = true,
		description = "Sweet-smelling Banana Kush buds with tropical flavors and a smooth buzz.",
		buttons = {
			{
				label = 'Make into baggies - 5x Buds Required',
				action = function(slot)
					TriggerEvent('dynyx_weed:craftbaggy', 'bananakush')
				end
			},
		},
	},
	
	-- WEED BAGGIES
	["bluedream_bag"] = {
		label = "Blue Dream Baggie",
		weight = 500,
		close = false,
		stack = true,
		description = "A baggie of premium Blue Dream buds with sweet, fruity notes.",
		client = {
		}
	},
	["purplehaze_bag"] = {
		label = "Purple Haze Baggie",
		weight = 500,
		close = false,
		stack = true,
		description = "A baggie packed with vibrant Purple Haze buds, rich in flavor.",
		client = {
		}
	},
	["glue_bag"] = {
		label = "Gorilla Glue Baggie",
		weight = 500,
		close = false,
		stack = true,
		description = "A baggie of potent Gorilla Glue buds, known for its sticky texture.",
		client = {
		}
	},
	["bananakush_bag"] = {
		label = "Banana Kush Baggie",
		weight = 500,
		close = false,
		stack = true,
		description = "A baggie filled with fruity Banana Kush buds, smooth and tropical.",
		client = {
		}
	},

Last updated