> For the complete documentation index, see [llms.txt](https://docs.t1ger.net/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.t1ger.net/resources/t1ger-chop-shop/configuration/chopzones.md).

# chopzones

Types and settings for the chopzones. You can set up as many as you like around the map using ox\_lib box zones.

```lua
---@class ChopZoneBlip
---@field enable boolean
---@field name string
---@field sprite number
---@field display number
---@field color number
---@field scale number

---@class ChopZone
---@field coords vector3
---@field size vector3
---@field rotation number
---@field blip ChopZoneBlip

---@type ChopZone[]
return {
    {
        coords = vec3(2383.5, 3054.0, 48.0), -- box zone coords
        size = vec3(103.0, 54.0, 8.0), -- box zone size
        rotation = 0.0, -- box zone rotation
        blip = {enable = true, name = "Thomson Scrapyard", sprite = 867, display = 4, color = 35, scale = 0.8}, -- blip settings
    },
    {
        coords = vec3(-184.5, 6276.0, 31.0), -- box zone coords
        size = vec3(74.0, 54.0, 9.0), -- box zone size
        rotation = 315.0, -- box zone rotation
        blip = {enable = true, name = "Paleto Scrapyard", sprite = 867, display = 4, color = 35, scale = 0.8}, -- blip settings
    },
    {
        coords = vec3(-492.0, -1692.0, 19.0), -- box zone coords
        size = vec3(143.0, 95.0, 24.0), -- box zone size
        rotation = 340.0, -- box zone rotation
        blip = {enable = true, name = "La Puerta Scrapyard", sprite = 867, display = 4, color = 35, scale = 0.8}, -- blip settings
    },
    {
        coords = vec3(1527.25, -2120.0, 77.5), -- box zone coords
        size = vec3(71.0, 73.25, 9.0), -- box zone size
        rotation = 1.5, -- box zone rotation
        blip = {enable = true, name = "El Burro Heights Scrapyard", sprite = 867, display = 4, color = 35, scale = 0.8}, -- blip settings
    },
    -- add more
}
```


---

# 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://docs.t1ger.net/resources/t1ger-chop-shop/configuration/chopzones.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.
