# 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="https://936908051-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FXUpnWo484lJ5zUXSfFK4%2Fuploads%2FOSoM93akh7hp2FiDcpem%2FGTA_Half-Half.png?alt=media&#x26;token=d13902de-5e0e-43c3-861b-24992aadfaba" 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="https://936908051-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FXUpnWo484lJ5zUXSfFK4%2Fuploads%2FYDtaXpTsJKD2wMwufDWB%2FGTA_Quarters.png?alt=media&#x26;token=e77625b6-a2df-4dd9-ab0b-2f7c112b7291" 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="https://936908051-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FXUpnWo484lJ5zUXSfFK4%2Fuploads%2Fp6hU7hRUJTs7tgh13Gbr%2FGTA_Docks%20Terminal-LSIA%20Airport-Casino.png?alt=media&#x26;token=325e5fa1-0f42-4287-aec2-44a9b540260a" 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="https://936908051-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FXUpnWo484lJ5zUXSfFK4%2Fuploads%2FyXZ0DNeXoVECqMusRCOm%2FGTA_AllAirports.png?alt=media&#x26;token=307be462-6ee1-4931-8bd5-7c07b9b2f498" alt=""><figcaption></figcaption></figure>
