> 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/displayed-vehicle-in-the-shop.md).

# Displayed vehicle in the shop

Your character will need to have a job with the specific dealer, once you make sure you have the correct job you're going to see this marker.

<figure><img src="https://rco.re/docs/pdm/display-5.png" alt=""><figcaption></figcaption></figure>

The marker will give you two options\
1\. Display new vehicle\
2\. Remove existing vehicle from the display case

<figure><img src="https://rco.re/docs/pdm/display-11.png" alt=""><figcaption></figcaption></figure>

So we're going to press G and it will open this menu

<figure><img src="https://rco.re/docs/pdm/display-15.png" alt=""><figcaption></figcaption></figure>

Use the arrows right + left to navigate in the vehicle menu press enter to choose the category and then press another enter to choose the final vehicle. It will ask you if you want to really confirm this vehicle to be in the display showcase so press yes.

<figure><img src="https://rco.re/docs/pdm/display-19.png" alt=""><figcaption></figcaption></figure>

## Adding brand new showcase spot

You can find all existing spots in the directory: `rcore_pdm/config/displayed_vehicles.lua`

{% hint style="warning" %}
The position has to be in the middle of all displayed vehicles! If the position will not be near the vehicles they won't show!
{% endhint %}

```lua
Config.DisplayVehicles = {
    --------------
    {
        -- name of the job
        Job = "dealer",

        -- This will lock the display vehicle change option to listed grades only.
        --        Grades = {
        --            ["boss"] = true,
        --            ["other"] = true,
        --        },

        -- Position in the PDM, please keep in mind this position HAS to be in the middle of the thing,
        -- so all vehicles can
        -- spawn and render.
        Position = vector3(-45.84, -1096.8, 26.42),

        -- Do not change.
        Render = false,

        -- camera
        cam = {
            ["car"] = PDMCamera,
        },
        
        vehicles = {
            [1] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-38.95, -1099.94, 26.03),
                heading = 143.15,
            },
            [2] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-43.17, -1097.91, 26.03),
                heading = 143.15,
            },
            [3] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-47.57, -1096, 26.03),
                heading = 143.15,
            },
            [4] = {
                -- Dont change these!
                -----------------------
                vehicle = "none",
                category = "",
                -----------------------

                pos = vector3(-52.42, -1094.03, 26.03),
                heading = 143.15,
            },
        },
    },
}
```


---

# 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/displayed-vehicle-in-the-shop.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.
