# Region Examples

Below are some examples on regions you can use, of course you can create your own regions within the config file.

## Half/Half Region

```lua
TZMCBlackoutAdvancedConfig.Regions = {
    leftSide = {
        topLeft = { x = -4000, y = 8000 },
        bottomRight = { x = 0, y = -4000 }
    },
    rightSide = {
        topLeft = { x = 0, y = 8000 },
        bottomRight = { x = 4000, y = -4000 }
    },
}
```

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

## Quarters Region

```lua
TZMCBlackoutAdvancedConfig.Regions = {
    topLeft = {
        topLeft = { x = -4000, y = 8000 },
        bottomRight = { x = 0, y = 0 }
    },
    topRight = {
        topLeft = { x = 0, y = 8000 },
        bottomRight = { x = 4000, y = 0 }
    },
    bottomLeft = {
        topLeft = { x = -4000, y = 0 },
        bottomRight = { x = 0, y = -4000 }
    },
    bottomRight = {
        topLeft = { x = 0, y = 0 },
        bottomRight = { x = 4000, y = -4000 }
    },
}
```

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

## Docks Terminal/LSIA Airport/Casino Region

```lua
TZMCBlackoutAdvancedConfig.Regions = {
    docks = {
        topLeft = { x = 675, y = -2893 },
        bottomRight = { x = 1315, y = -3377 }
    },
    lsia = {
        topLeft = { x = -2000, y = -2000 },
        bottomRight = { x = -700, y = -3625 }
    },
    casino = {
        topLeft = { x = 800, y = 300 },
        bottomRight = { x = 1288, y = -108 }
    }
}
```

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

## All Airports Region

```lua
TZMCBlackoutAdvancedConfig.Regions = {
    lsia = {
        topLeft = { x = -2000, y = -2000 },
        bottomRight = { x = -700, y = -3625 }
    },
    sandyShores = {
        topLeft = { x = 1000, y = 3375 },
        bottomRight = { x = 1854, y = 2965 }
    },
    mckenzies = {
        topLeft = { x = 1893, y = 4880 },
        bottomRight = { x = 2176, y = 4686 }
    }
    fortZancudo = {
        topLeft = { x = -2914, y = 3513 },
        bottomRight = { x = -1518, y = 2712 }
    }
}
```

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


---

# 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://docs.tzmc.dev/docs/standalone/advanced-blackout-power-cut-esx-standard/region-examples.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.
