esx

1

Install dependencies

check dependencies & minigames for dependencies and install them.

2

Add inventory items

Add items to your inventory items list, check below.

3

Add to server.cfg

ensure oxmysql
ensure ox_lib
ensure es_extended
ensure ox_target
ensure ox_inventory
ensure filo_vehiclekey
4

Configure config/shared.lua

Set OldESX to true if you're using old version of es_extended

ox_inventory
ox_inventory/data/items.lua
['advancedlockpick'] = {
    label = 'Advanced Lockpick',
    description = 'Used to pick locks obviously.',
    weight = 500
},

['lockpick'] = {
    label = 'Lockpick',
    description = 'Used to pick locks obviously.',
    weight = 160
},

["tools"] = {
    label = "Tools",
    description = "Maybe this can cut wires.",
    weight = 800,
    stack = true,
    close = true,
},

['vehiclekeys'] = {
    label = 'Vehicle Keys',
    weight = 220,
    stack = false,
    close = true,
},

Last updated