Creating Items

ox_inventory/data/items.lua

	["nitroglycerine"] = {
		label = 'Nitroglycerine',
		weight = 1,
		stack = true,
		close = true,
		description = 'Refills installed nitro system.',
		client = { export = 'ic3d_nitro.useNitroglycerine' }
	},
	["nitro_bottle"] = {
		label = 'Nitro Bottle',
		weight = 250,
		stack = false,
		close = true,
		description = 'Nitrous oxide bottle. Install in a vehicle.',
		client = { export = 'ic3d_nitro.useNitroBottle' },
		consume = 0
	},

	["purge_remote"] = {
		label = 'Purge Remote',
		weight = 100,
		stack = false,
		close = true,
		description = 'Adjust nitro purge color/alpha for your current vehicle.',
		client = { export = 'ic3d_nitro.usePurgeRemote' },
		consume = 0
	},
    ['mechanic_tool'] = {
        label = 'Mechanic Tool',
        weight = 150,
        stack = true,
        close = true,
        description = 'Required to install nitro systems.'
    },

Last updated

Was this helpful?