Installation

Prepare and install dependencies

Framework dependencies (supported by current bridge)

For framework, you can either choose:

Download

Please make you downloaded your resource:

Add items

Add items to ox_inventory/data/items.lua;

    ['drone'] = {
        label = 'Drone',
        weight = 100,
        stack = true,
        description = "",
        server = {
            export = 'fd_rc.usedItem'
        }
    },
    ['rc_car'] = {
        label = 'Remote Control Car',
        weight = 100,
        stack = true,
        description = "",
        server = {
            export = 'fd_rc.usedItem'
        }
    },
    ['rc_batteries'] = {
        label = 'RC Batteries',
        weight = 100,
        stack = true,
        description = ""
    },
    ['rc_repair_kit'] = {
        label = 'RC Repair Kit',
        weight = 100,
        stack = true,
        description = ""
    },
    ['rc_controller'] = {
        label = 'Remote Controller',
        weight = 100,
        stack = true,
        description = "",
        server = {
            export = 'fd_rc.usedController'
        }
    },

Start resource

Make sure, resource is started after ox_lib.

  ensure ox_lib
  ...
  ensure fd_rc