Required Items#
The following items are used by the casino system:
Item | Category | Description |
|---|---|---|
| Casino Currency | Used as the main casino currency when |
| VIP Market | Premium item purchased using casino chips. |

Documentation
Learn how to register every item required by Quasar Diamond Casino. This section includes ready-to-use examples for QS Inventory, QBCore, OX Inventory, and ESX SQL, making it easy to configure casino chips, market items, and bar consumables on your server.
The following items are used by the casino system:
Item | Category | Description |
|---|---|---|
| Casino Currency | Used as the main casino currency when |
| VIP Market | Premium item purchased using casino chips. |
| VIP Market | Premium jewelry item available in the casino shop. |
| VIP Market | Exclusive casino market item. |
| VIP Market | Luxury item available for VIP customers. |
| Casino Bar | Premium drink purchased from the casino bar. |
| Casino Bar | Premium alcoholic beverage. |
| Casino Bar | Casino-themed tequila drink. |
| Casino Bar | Premium bourbon drink. |
Add the following items inside your Quasar Inventory shared items configuration:
['casinochips'] = {
label = 'Casino Chips',
weight = 0,
stack = true,
close = false,
description = 'Casino Chips used inside the Diamond Casino.'
},
['gold_watch'] = {
label = 'Gold Watch',
weight = 1,
stack = true,
close = true,
description = 'A luxury gold watch.'
},
['diamond_ring'] = {
label = 'Diamond Ring',
weight = 1,
stack = true,
close = true,
description = 'A valuable diamond ring.'
},
['luxury_cigar'] = {
label = 'Luxury Cigar',
weight = 1,
stack = true,
close = true,
description = 'An expensive luxury cigar.'
},
['expensive_champagne'] = {
label = 'Expensive Champagne',
weight = 1,
stack = true,
close = true,
description = 'A premium bottle of champagne.'
},
['royal_flush_whiskey'] = {
label = 'Royal Flush Whiskey',
weight = 1,
stack = true,
close = true,
description = 'A premium casino whiskey.'
},
['high_roller_vodka'] = {
label = 'High Roller Vodka',
weight = 1,
stack = true,
close = true,
description = 'A premium vodka bottle.'
},
['lucky_7s_tequila'] = {
label = "Lucky 7's Tequila",
weight = 1,
stack = true,
close = true,
description = 'A special casino tequila.'
},
['blackjack_bourbon'] = {
label = 'Blackjack Bourbon',
weight = 1,
stack = true,
close = true,
description = 'A premium bourbon bottle.'
},Add the following items inside:
qb-core/shared/items.lua['casinochips'] = {
name = 'casinochips',
label = 'Casino Chips',
weight = 0,
type = 'item',
image = 'casinochips.png',
unique = false,
useable = false,
shouldClose = false,
description = 'Casino Chips used inside the Diamond Casino.'
},
['gold_watch'] = {
name = 'gold_watch',
label = 'Gold Watch',
weight = 1000,
type = 'item',
image = 'gold_watch.png',
unique = false,
useable = false,
shouldClose = false,
},
['diamond_ring'] = {
name = 'diamond_ring',
label = 'Diamond Ring',
weight = 1000,
type = 'item',
image = 'diamond_ring.png',
unique = false,
useable = false,
shouldClose = false,
},Repeat the same structure for:
luxury_cigar
expensive_champagne
royal_flush_whiskey
high_roller_vodka
lucky_7s_tequila
blackjack_bourbonAdd the items inside:
ox_inventory/data/items.lua['casinochips'] = {
label = 'Casino Chips',
weight = 0,
stack = true,
close = false,
description = 'Casino Chips used inside the Diamond Casino.'
},
['gold_watch'] = {
label = 'Gold Watch',
weight = 1000,
stack = true,
close = true,
},
['diamond_ring'] = {
label = 'Diamond Ring',
weight = 1000,
stack = true,
close = true,
},Repeat the same structure for all remaining casino market and bar items.
For ESX servers using database items, execute the following SQL:
INSERT INTO `items` (`name`, `label`, `weight`, `rare`, `can_remove`) VALUES
('casinochips', 'Casino Chips', 0, 0, 1),
('gold_watch', 'Gold Watch', 1, 0, 1),
('diamond_ring', 'Diamond Ring', 1, 0, 1),
('luxury_cigar', 'Luxury Cigar', 1, 0, 1),
('expensive_champagne', 'Expensive Champagne', 1, 0, 1),
('royal_flush_whiskey', 'Royal Flush Whiskey', 1, 0, 1),
('high_roller_vodka', 'High Roller Vodka', 1, 0, 1),
('lucky_7s_tequila', "Lucky 7's Tequila", 1, 0, 1),
('blackjack_bourbon', 'Blackjack Bourbon', 1, 0, 1);The resource includes all required item images inside the [img] folder.
Copy these images into your inventory image directory:
casinochips.png
gold_watch.png
diamond_ring.png
luxury_cigar.png
expensive_champagne.png
royal_flush_whiskey.png
high_roller_vodka.png
lucky_7s_tequila.png
blackjack_bourbon.pngAfter adding the items and images, restart your inventory resource and qs-diamondcasino to apply the changes.