# Restrict shop to certain job

Right now there are two possible ways to limit visibility with help of a player job.

#### jobs

This will make the shop visible only for the selected job.

#### jobs\_blacklist

If you do not use the whitelist "jobs" above and you want it to be visible for everyone besides some jobs, you can use this blacklist.

Lets show it on some real example.

```lua
{ --Testing double shop
    blip = {
        pos = vector3(25.879409790039, -1352.1334228516, 29.334775924683),
        label = 'Dealer test',
        sprite = 52,
        color = 1,
    },
    jobs_blacklist = {
        'job that will no see', 'another job that will not see',
    },
    jobs = {
        'i will see this','me to!!',
    },
    sections = {}
}
```


---

# 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_shops/restrict-shop-to-certain-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.
