OX_Inventory Integration

Find information on configuring for OX_Inventory!

The following code needs to be added into ox_inventory/data/items.lua within your OX_Inventory resource:

['tripod'] = {
	label = 'Tripod',
	weight = 220,
	server = {
		export = 'roperescue.useRopeRescueItem',
		name = "tripod"
	},
},
['basket'] = {
	label = 'Basket',
	weight = 220,
	server = {
		export = 'roperescue.useRopeRescueItem',
		name = "basket"
	},
},

Additionally, you'll need to open the config.lua file within the Rope Rescue resource and navigate to lines 21-23.

inventory = {
    itemEnabled = false,
    oxInventory = false,

Here you can enable the item. You should also enable oxInventory.

Last updated