> For the complete documentation index, see [llms.txt](https://documentation.rcore.cz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.rcore.cz/paid-resources/rcore_clothing/rcore_clothes/restriction-for-certian-job.md).

# 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
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

```
GET https://documentation.rcore.cz/paid-resources/rcore_clothing/rcore_clothes/restriction-for-certian-job.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
