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:

['starchase_cartridge'] = {
        label = 'Starchase Cartridge',
        weight = 220,
        server = {
            export = 'starchase.OxUseStarChaseDart',
        },
},
['starchase'] = {
        label = 'Starchase',
        weight = 220,
        server = {
            export = 'starchase.OxUseStarChase',
        },
},

Additionally, you'll need to open the config.lua file within the Star Chase resource and navigate to lines 49-52.

cartridgeItemName = "starchase_cartridge", -- If you're using a framework, you'll need to add this as an item. See our documentation for more info on this.
starChaseItemName = "starchase",
oxInventory = false,

Here you can enable the items and also choose the names. You should also enable oxInventory.

Last updated