ox_core

Improve compatibility between Meth Crafting and ox_core!

Our Meth Crafting already provides built-in support for ox_core, with only one change needing to be made to work as expected. If you followed the Install Instructions laid out earlier, we need to slightly change our item data for a select few items. Find the following items in your ox_inventory/data/items.lua and update them to this:

    ['ls_meth_table'] = {
        label = 'Meth Table',
        weight = 1000,
        stack = false,
        consume = 0,
        server = {
            export = 'lation_meth.ls_meth_table'
        }
    },

    ['ls_gas_mask'] = {
        label = 'Gas Mask',
        weight = 150,
        stack = false,
        consume = 0,
        server = {
            export = 'lation_meth.ls_gas_mask'
        }
    },

    ['ls_supply_crate'] = {
        label = 'Supplies',
        weight = 1000,
        consume = 0,
        server = {
            exports = 'lation_meth.ls_supply_crate'
        }
    },

This will make the items useable and is a required step! Enjoy!

Last updated