> For the complete documentation index, see [llms.txt](https://docs.tzmc.dev/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tzmc.dev/docs/standalone/advanced-blackout-power-cut-esx-standard/region-examples.md).

# 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>
