# Coords

```lua
CarDealer = {
    TryCoords = vector4(-1648.7524414063, -3137.04296875, 12.992223739624, 329.32318115234),
    Location = {
        {
            vehspawn = vec4(-13.145836, -1091.341797, 26.672060, 160.81561279297),
            Catalog = vec4(-50.285194, -1089.606567, 25.422340, 341.23440551758),
        },
    },
}
```

* CarDealer.TryCoords = The location where the vehicle will spawn to test the vehicles
* CarDealer.Location.vehspawn = The vehicle spawns once the vehicle is purchased
* CarDealer.Location.Catalog = The position of the catalog

{% hint style="info" %}
If you want to add another catalog point copy paste an index of the Location table
{% endhint %}

```lua
CarDealer = {
    Location = {
        {
            vehspawn = vec4(-13.145836, -1091.341797, 26.672060, 160.81561279297),
            Catalog = vec4(-50.285194, -1089.606567, 25.422340, 341.23440551758),
            Blips = {
                Sprite = 570,
                Display = 4,
                Scale = 0.9,
                Colour = 3,
                String = "Catalog"
            }
        },
        // Example
        {
            vehspawn = New Coords,
            Catalog = New Coords,
            Blips = {
                Sprite = 570,
                Display = 4,
                Scale = 0.9,
                Colour = 3,
                String = "Catalog"
            }
        },
    },
}
```


---

# 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://doc.var-fivem.com/autocardealer/configuration/coords.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.
