# Restriction for certian job

We will have to look for **"sections"** and to the desired section we would like to lock for the job we will simply add **job = { "job" }** check the example below

```etlua
Config.Stores = {
    {
        position = vector3(-1164.99,-1586.59,4.38),
        label = 'Vespuci - Masky',
        sprite = 362,
        color = 60,
        society = 'society_goverment',
        
        ------------------------
        -- Restricting this section to the job
        -- Here
        ------------------------
        job = {
            'first job', --Use job limitation
            'second job'
        },
        -----------------------
        -----------------------
        -----------------------        
        
        sections = {
            glasses = {
                pos = vector3(-1164.99,-1586.59,4.38),
                label = '🙈',
                help = 'Click ~INPUT_CONTEXT~ to open shop',
                components = {
                    {
                        label = 'Mask',
                        name = 'mask_1',
                        from = -1,
                        to = 160,
                        current = -1,
                        reset = {
                            'mask_2'
                        },
                        price = 50,
                        blacklist = {
                            26,27,
                        }
                    },
                    {
                        label = 'Color of the mask',
                        name = 'mask_2',
                        from = 0,
                        to = 20,
                        current = 0,
                        price = 10,
                    },
                },
                cam = {
                    offset = {
                        x = 0.0,
                        y = 1.0,
                        z = 0.7
                    },
                    pointOffset = {
                        x = 0,
                        y = 0,
                        z = 0.8
                    },
                    taskHeading = 100.66
                }
            },
        }
    },
}
```


---

# 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://documentation.rcore.cz/paid-resources/rcore_clothing/rcore_clothes/restriction-for-certian-job.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.
