# Setting up store

{% stepper %}
{% step %}

#### 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.
{% endstep %}

{% step %}

#### Create store

{% hint style="danger" %}
If you don't have the [Ten Cent](https://brunxmods.com/product/ten-cent-cinema), [Cinema Doppler](https://brunxmods.com/product/cinema-doppler) or [Drive-In](https://brunxmods.com/product/drive-in-cinema) 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.
{% endhint %}

{% code title="brnx-cinemasystem/modules/config/config.lua" fullWidth="true" %}

```lua
config.shops = {
    enabled = true,

    cinema = {
        ['newcinema_food'] = {
            title = 'New Cinema',

            items = {
                {
                    item = 'popcorn',
                    label = 'Popcorn',
                    image = '../images/popcorn.png',
                    price = 5
                },
                {
                    item = 'cola',
                    label = 'Cola',
                    image = '../images/cola.png',
                    price = 10
                }
            }
        }
    },

    locations = {
        { coords = vector3(0.0, 0.0, 0.0), distance = 2.0, config = 'newcinema_food' }
    }
}
```

{% endcode %}
{% endstep %}
{% endstepper %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://bluen-store.gitbook.io/docs/cinema-system/configuration/setting-up-store.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
