OX-Inventory Support

This Is OX-Inventory Support Docs Please Follow The Step

INSTALL:

For Ox Inventory

ox_inventory > data > items.lua

    ["chloroform"] = {
		label = "Chloroform",
		weight = 200,
		stack = true,
		close = false,
		description = "",
		client = {
			image = "chloroform.png",
		}
	},
	["organcooler"] = {
		label = "organcooler",
		weight = 200,
		stack = true,
		close = false,
		description = "",
		client = {
			image = "organcooler.png",
		}
	},
	-- Organ Box item
	['organbox'] = {
		label = 'Organ Box',
		weight = 1000,
		stack = false,
		close = true,
		description = 'A box containing an organ.',
		metadata = {
			name = 'Organ Name',
			bloodtype = 'Blood Type',
			status = 'Organ Status',
			price = 0,
			description = ''
		}
	},
    ["trojan_usb"] = {
		label = "Trojan USB",
		weight = 0,
		stack = true,
		close = true,
		description = "Handy software to shut down some systems",
		client = {
			image = "usb_device.png",
		}
	},

Last updated