Installation

Inventory Items

Add the following items to your ox_inventory/data/items.lua

['rock'] = {
    label = "Rock",
    weight = 20,
    stack = true,
    close = false,
},
['copper'] = {
    label = "Copper",
    weight = 20,
    stack = true,
    close = false,
},
['crystal'] = {
    label = "Crystal",
    weight = 20,
    stack = true,
    close = false,
},
['emerald'] = {
    label = "Emeral",
    weight = 20,
    stack = true,
    close = false,
},
['garnet'] = {
    label = "garnet",
    weight = 20,
    stack = true,
    close = false,
},
['gold'] = {
    label = "Gold",
    weight = 20,
    stack = true,
    close = false,
},
['lead'] = {
    label = "Lead",
    weight = 20,
    stack = true,
    close = false,
},
['nefrit'] = {
    label = "Nefrit",
    weight = 20,
    stack = true,
    close = false,
},
['quartz'] = {
    label = "Quartz",
    weight = 20,
    stack = true,
    close = false,
},
['ruby'] = {
    label = "Ruby",
    weight = 20,
    stack = true,
    close = false,
},
['sapphire'] = {
    label = "Sapphire",
    weight = 20,
    stack = true,
    close = false,
},
['silver'] = {
    label = "Silver",
    weight = 20,
    stack = true,
    close = false,
},
['sulphur'] = {
    label = "Sulphur",
    weight = 20,
    stack = true,
    close = false,
},
["aluminum"] = {
    label = "Aluminum",
    weight = 20,
    stack = true,
    close = true,
},
["iron"] = {
    label = "Iron",
    weight = 20,
    stack = true,
    close = true,
},

Sledge hammer weapon

Add the following weapon to your ox_inventory/data/weapons.lua

['WEAPON_SLEDGEHAMMER'] = {
    label = 'Sledge Hammer',
    weight = 1200,
    durability = 0.1,
},