Step 5

add items in inventory

qs-inventory

["weed"] = {
    ["name"] = "weed",
    ["label"] = "Marijuana",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "weed.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Hey brother, I think this is so natural..."
},

["weed_packaged"] = {
    ["name"] = "weed_packaged",
    ["label"] = "Marijuana empaquetada",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "weed_packaged.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Hey brother, I think this is so natural..."
},

["cocaine"] = {
    ["name"] = "cocaine",
    ["label"] = "Cocaine",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "cocaine.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "The powder of love, who would have thought it would be so addictive?"
},

["cocaine_cut"] = {
    ["name"] = "cocaine_cut",
    ["label"] = "Cocaina Cortada",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "cocaine_cut.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "The powder of love, who would have thought it would be so addictive?"
},

["cocaine_packaged"] = {
    ["name"] = "cocaine_packaged",
    ["label"] = "Cocaina empaquetada",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "cocaine_packaged.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "The powder of love, who would have thought it would be so addictive?"
},

["meth"] = {
    ["name"] = "meth",
    ["label"] = "Metanfetamina",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "meth.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Oh shit brother, that's hard, very hard."
},

["chemicals"] = {
    ["name"] = "chemicals",
    ["label"] = "Quimicos",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "chemicals.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Oh shit brother, that's hard, very hard."
},

["meth_packaged"] = {
    ["name"] = "meth_packaged",
    ["label"] = "Metanfetamina empaquetada",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "meth_packaged.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Oh shit brother, that's hard, very hard."
},

["sorted_money"] = {
    ["name"] = "sorted_money",
    ["label"] = "Dinero cortado",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "sorted_money.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Oh shit brother, that's hard, very hard."
},

["package_money"] = {
    ["name"] = "package_money",
    ["label"] = "Dinero empaquetado",
    ["weight"] = 10,
    ["type"] = "item",
    ["image"] = "package_money.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "Oh shit brother, that's hard, very hard."
},

ox_inventory items

["weed"] = {
    label = "Weed",
    weight = 1,
    stack = true,
    close = false,
},

["weed_packaged"] = {
    label = "Weed Packeged",
    weight = 1,
    stack = true,
    close = false,
},

["cocaine"] = {
    label = "Cocaine",
    weight = 1,
    stack = true,
    close = false,
},

["cocaine_cut"] = {
    label = "Cocaine Cuted",
    weight = 1,
    stack = true,
    close = false,
},

["cocaine_packaged"] = {
    label = "Cocaine Packeged",
    weight = 1,
    stack = true,
    close = false,
},

["chemicals"] = {
    label = "Chemicals",
    weight = 1,
    stack = true,
    close = false,
},

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

["meth_packaged"] = {
    label = "Meth packaged",
    weight = 1,
    stack = true,
    close = false,
},

["sorted_money"] = {
    label = "Sorted money",
    weight = 1,
    stack = true,
    close = false,
},

["package_money"] = {
    label = "Package money",
    weight = 1,
    stack = true,
    close = false,
},

Last updated