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
['tradingcard_psa'] = {
['name'] = 'tradingcard_psa',
['label'] = 'Card Psa',
['weight'] = 50,
['type'] = 'item',
['image'] = 'tradingcard_psa.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Letter verified with PSA, lets wait for your qualification!'
},
['tradingcard_stash'] = {
['name'] = 'tradingcard_stash',
['label'] = 'Card Book',
['weight'] = 50,
['type'] = 'item',
['image'] = 'tradingcard_stash.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Album for collectible cards!'
},
['tradingcard_basic'] = {
['name'] = 'tradingcard_basic',
['label'] = 'Card Basic',
['weight'] = 10,
['type'] = 'item',
['image'] = 'tradingcard_basic.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Basic letter, it will serve for your collection'
},
['tradingcard_rare'] = {
['name'] = 'tradingcard_rare',
['label'] = 'Card Rare',
['weight'] = 10,
['type'] = 'item',
['image'] = 'tradingcard_rare.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'This letter is strange, how crazy...'
},
['tradingcard_legendary'] = {
['name'] = 'tradingcard_legendary',
['label'] = 'Card Legendary',
['weight'] = 10,
['type'] = 'item',
['image'] = 'tradingcard_legendary.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'A card of peculiar rarity, I would say legendary!'
},
['tradingcard_booster_pack'] = {
['name'] = 'tradingcard_booster_pack',
['label'] = 'Card Booster Pack',
['weight'] = 50,
['type'] = 'item',
['image'] = 'tradingcard_booster_pack.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Pack with random TCG cards'
},
['tradingcard_booster_legends'] = {
['name'] = 'tradingcard_booster_legends',
['label'] = 'Card Booster Legends',
['weight'] = 50,
['type'] = 'item',
['image'] = 'tradingcard_booster_legends.png',
['unique'] = true,
['useable'] = true,
['shouldClose'] = true,
['combinable'] = nil,
['description'] = 'Pack with random TCG cards'
},qb-inventory
['tradingcard_psa'] = { ['name'] = 'tradingcard_psa', ['label'] = 'Card Psa', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_psa.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Letter verified with PSA, lets wait for your qualification!' },
['tradingcard_stash'] = { ['name'] = 'tradingcard_stash', ['label'] = 'Card Book', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_stash.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Album for collectible cards!' },
['tradingcard_basic'] = { ['name'] = 'tradingcard_basic', ['label'] = 'Card Basic', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_basic.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Basic letter, it will serve for your collection.' },
['tradingcard_rare'] = { ['name'] = 'tradingcard_rare', ['label'] = 'Card Rare', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_rare.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'This letter is strange, how crazy...' },
['tradingcard_legendary'] = { ['name'] = 'tradingcard_legendary', ['label'] = 'Card Legendary', ['weight'] = 10, ['type'] = 'item', ['image'] = 'tradingcard_legendary.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'A card of peculiar rarity, I would say legendary!' },
['tradingcard_booster_pack'] = { ['name'] = 'tradingcard_booster_pack', ['label'] = 'Card Booster Pack', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_booster_pack.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack with random TCG cards.' },
['tradingcard_booster_legends'] = { ['name'] = 'tradingcard_booster_legends', ['label'] = 'Card Booster Legends', ['weight'] = 50, ['type'] = 'item', ['image'] = 'tradingcard_booster_legends.png', ['unique'] = true, ['useable'] = true, ['shouldClose'] = true, ['combinable'] = nil, ['description'] = 'Pack with random TCG cards.' },ox_inventory
['tradingcard_basic'] = {
label = 'Trading Card Basic',
weight = 150,
stack = false,
consume = 0,
server = {
export = 'qs-tradingcards.OpenInterationMenu',
}
},
['tradingcard_rare'] = {
label = 'Trading Card Rare',
weight = 150,
stack = false,
consume = 0,
server = {
export = 'qs-tradingcards.OpenInterationMenu',
}
},
['tradingcard_legendary'] = {
label = 'Trading Card Legendary',
weight = 150,
stack = false,
consume = 0,
server = {
export = 'qs-tradingcards.OpenInterationMenu',
}
},
['tradingcard_booster_pack'] = {
label = 'Trading Card Booster',
weight = 150,
stack = false,
consume = 0,
client = {
export = 'qs-tradingcards.OpenBoosterPack',
}
},
['tradingcard_booster_legends'] = {
label = 'Trading Card Booster Legends',
weight = 150,
stack = false,
consume = 0,
client = {
export = 'qs-tradingcards.OpenBoosterPack',
}
},
['tradingcard_psa'] = {
label = 'Trading Card Psa',
weight = 150,
stack = false,
consume = 0,
client = {
export = 'qs-tradingcards.openPsa'
},
},
['tradingcard_stash'] = {
label = 'Trading Card Stash',
weight = 150,
stack = false,
consume = 0,
server = {
export = 'qs-tradingcards.openAlbum',
},
},