# Street Selling

* Predefined selling zones: Davis, Vespucci Beach, Sandy Shores

```lua
Shared.AlertCodePolice = "10-99"

Shared.DrugZones = {
    DAVIS = {label = "Davis"},
    BEACH = {label = "Vespucci Beach"},
    SANDY = {label = "Sandy Shores"}
}
```

* Prices vary by trust and drug type (weed, coke, meth)

```lua
Shared.DrugItems = {
    weed = {label = "Cannabis", minPrice = 20, maxPrice = 30},
    coke = {label = "Cocaïne", minPrice = 40, maxPrice = 50},
    meth = {label = "Méthamphétamine", minPrice = 60, maxPrice = 70}
}
```

* `/activeselldrugs` command to toggle street selling
* Server-side management of zone trust and dirty money payments


---

# 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/drugs/configuration/street-selling.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.
