Inventory Items

This section includes the complete item list for the script, ready to be integrated into the most popular inventory systems. Each item is properly configured with its name, label, and parameters to ensure full compatibility and seamless functionality within your server’s inventory setup.


qs-inventory
["outfitbag"] = {
    ["name"] = "outfitbag",
    ["label"] = "Outfit Bag",
    ["weight"] = 1000,
    ["type"] = "item",
    ["image"] = "outfitbag.png",
    ["unique"] = false,
    ["useable"] = true,
    ["shouldClose"] = true,
    ["combinable"] = nil,
    ["description"] = "A portable bag for storing and changing outfits anywhere."
},
esx_inventory
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
    ('outfitbag', 'Outfit Bag', 1000, 0, 1)
;
qb-inventory
["outfitbag"] = { name = "outfitbag", label = "Outfit Bag", weight = 1000, type = "item", image = "outfitbag.png", unique = false, useable = true, shouldClose = true, description = "A portable bag for storing and changing outfits anywhere." },
ox_inventory
['outfitbag'] = {
    label = 'Outfit Bag',
    weight = 1000,
    stack = true,
    close = true,
    description = 'A portable bag for storing and changing outfits anywhere.'
}