> 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_pdm/boss-menu-+-locations.md).

# Boss menu + locations

All existing boss menus can be found in the directory: `rcore_pdm/config/boss_menu_list.lua`

```lua
Config.BossMarkerList = {
    -- This is a key and must be uniq name
    ["example_id"] = {
        -- Marker position with interactive menu
        Position = vector3(-719.41, -1326.13, 1.6),

        -- Marker style
        MarkerSpawnerStyle = MarkerSpawnerStyle,

        -- This will select only certain vehicles, if left nil everything will break.
        Job = "boatdealer",

        -- What grade is allowed to open this & see the marker?
        Grades = {"boss", "2"},

        -- Will this boss menu allow changing the vehicle's price from the game?
        ChangingPriceEnabled = true,

        -- Where the vehicle will spawn?
        SpawnPoints = BoatSpawn,

        -- Society name
        Society = "society_boatdealer",

        -- Society name
        SocietyLabel = "boat dealer",

        -- A custom camera position?
        CameraPositions = {
            -- the same ID's like from "Config.CameraPosition"
            ["car"] = BoatShop,
        },
    },
}
```

## Location for all boss menus

In the default settings of rcore\_pdm there are 3 boss menus here is a list of locations + what job + grade you need to have.

X = `-31`\
Y = `-1110`\
Z = `26`

Job: `dealer`\
Grade: `2`

<figure><img src="/files/QfwK1Us3lFJzCkGabCjQ" alt=""><figcaption></figcaption></figure>

X = `-719`\
Y = `-1326`\
Z = `2`

Job: `boatdealer`\
Grade: `2`

<figure><img src="/files/kHj6u7H6LkudvSUCr9ok" alt=""><figcaption></figcaption></figure>

X = `-955`\
Y = `-2974`\
Z = `14`

Job: `planedealer`\
Grade: `2`

<figure><img src="/files/Zid4rZkpLnicoWgdPWdJ" alt=""><figcaption></figcaption></figure>

\`\`


---

# 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_pdm/boss-menu-+-locations.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.
