Brunx
  • Home
  • Cinema System
    • Installation
    • Configuration
      • Language
      • Setting up cinema
      • Setting up store
      • Keybinds and commands
    • Frameworks
      • Client guide
      • Server guide
    • Exports and events
      • Client events
      • Server events
      • State bags
Powered by GitBook
On this page
  1. Cinema System
  2. Configuration

Setting up store

PreviousSetting up cinemaNextKeybinds and commands
1

Go to config.lua

Our script also includes an integrated store system, enabling you to set up multiple shops within the cinemas to sell products and snacks. These shops can be configured in the brnx-cinemasystem/modules/shared/config.lua file.

2

Create store

If you don't have the or maps, you will need to configure the entire script manually. However, if you do have these maps, there's no need to worry, as both are already pre-configured. You can still edit them if needed. Follow the examples below to create a new cinema.

brnx-cinemasystem/modules/shared/config.lua
config.totems = {    
    { coord = vector3(353.5516, 192.1714, 102.981), method = 'shop', config = 'popcorn', cinema = 'standalone' },
}

config.url = 'http://yourlink' -- link item image

config.shop = {
    ['popcorn'] = {
        { spawn = 'popcorn', index = 'popcorn', name = 'Popcorn' }
    }
}

Ten Cent
Cinema Doppler