Setting up store

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

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' }
    }
}