📁Required Items

OX Inventory

Weapon

If you are using OX Inventory to add the required weapon ⇒ ox_inventory/data/weapons.lua

['WEAPON_HACKINGDEVICE'] = {
    label = 'Hacking Device',
    weight = 1000,
    durability = 0.0,
},

Items

If you are using OX Inventory to add the required item ⇒ ox_inventory/data/items.lua

["houserobbery_bag"] = {
    label = "Heist Bag",
    weight = 500,
    stack = false,
    close = true,
},

["houserobbery_tablet"] = {
    label = "House Robbery Tablet",
    weight = 500,
    stack = false,
    close = true,
},

["wine"] = {
    label = "Wine",
    weight = 300,
    stack = true,
    close = false,
},

["whiskey"] = {
    label = "Whiskey",
    weight = 500,
    stack = true,
    close = true,
},

["weed_ak47"] = {
    label = "AK47 2g",
    weight = 200,
    stack = true,
    close = false,
},

["cokebaggy"] = {
    label = "Bag of Coke",
    weight = 0,
    stack = true,
    close = true,
},

["meth"] = {
    label = "Meth",
    weight = 100,
    stack = true,
    close = true,
},

["rolex"] = {
    label = "Golden Watch",
    weight = 1500,
    stack = true,
    close = true,
},

["diamond_ring"] = {
    label = "Diamond Ring",
    weight = 1500,
    stack = true,
    close = true,
},

["goldchain"] = {
    label = "Golden Chain",
    weight = 1500,
    stack = true,
    close = true,
},

["tenkgoldchain"] = {
    label = "10k Gold Chain",
    weight = 2000,
    stack = true,
    close = true,
},

["goldbar"] = {
    label = "Gold Bar",
    weight = 7000,
    stack = true,
    close = true,
},

["iphone"] = {
    label = "iPhone",
    weight = 1000,
    stack = true,
    close = true,
},

["samsungphone"] = {
    label = "Samsung S10",
    weight = 1000,
    stack = true,
    close = true,
},

["laptop"] = {
    label = "Laptop",
    weight = 4000,
    stack = true,
    close = true,
},

["tablet"] = {
    label = "Tablet",
    weight = 2000,
    stack = true,
    close = true,
},

["smartwatch"] = {
    label = "Smart Watch",
    weight = 2000,
    stack = true,
    close = true,
},

QBCore / QBox

Weapon

If you are using QBCore || QBox to add the required weapon ⇒ qb-core/shared/weapons.lua || qbx_core/shared/weapons.lua

Items

If you are using QBCore || QBox to add the required item ⇒ qb-core/shared/items.lua || qbx_core/shared/items.lua

Durability Blocked Weapons

If you are using QBCore ⇒ qb-weapons/config.lua

Weapdraw

If you are using QBCore ⇒ qb-weapons/client/weapdraw.lua

Last updated