Quasar Store Logo

Add Casino Maps

Configure compatible casino maps by creating a folder inside /config and registering it in config/main.lua. The system automatically detects installed maps and loads the correct configuration, falling back to default if none are found.

To support different casino interiors, you can create a new folder inside /config following the same structure as the existing examples. Each folder contains the configuration for that specific map. The folder name must match exactly the map name defined in config/main.lua. The system will automatically detect if any of the listed maps are running using DependencyCheck. If none of them are found, it will fall back to the default configuration.

-- Example folder structure inside /config -- config/ -- ├─ default/ -- ├─ energy_atlantiscasino/ -- ├─ gabz_casino/ -- ├─ k4mb1-casino/ -- ├─ molo_casino/ -- ├─ tstudio_jurassic_jackpot/ -- ├─ tstudio_pearls_resort/ -- └─ main.lua -- config/main.lua local maps = { -- [CORE] ['gabz_casino'] = 'gabz_casino', ['k4mb1-casino'] = 'k4mb1-casino', ['molo_casino'] = 'molo_casino', ['tstudio_jurassic_jackpot'] = 'tstudio_jurassic_jackpot', ['tstudio_pearls_resort'] = 'tstudio_pearls_resort', ['energy_atlantiscasino'] = 'energy_atlantiscasino', -- Example custom map (must match the folder name in /config) ['my_custom_casino'] = 'my_custom_casino' } Config.Map = DependencyCheck(maps) or 'default' -- [AUTO]

The folder name must always match the map name added in the configuration so the system can detect it correctly.