OX_Inventory Integration

Find information on configuring for OX_Inventory!

Please note that your resource folder should be named 'eod' for our exports to work properly

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

['saleboard'] = {
        label = 'Car Sale Sign',
        weight = 220,
        server = {
            export = 'carsalesign.useSign',
        },
},

Additionally, you'll need to open the config.lua file within the Car Sale Sign resource and navigate to lines 34-37.

inventory = {
    itemName = "saleboard",
    itemEnabled = false,
    oxInventory = false,
    qbInventory = false,
    esxInventory = false,
    vRPInventory = false,
    quasarInventory = false, -- Enable QB/ESX below aswell
    coreInventory = false, -- Enable QB/ESX below aswell
}

Here you can enable the item and also choose the name. You should also enable oxInventory.

Last updated