> For the complete documentation index, see [llms.txt](https://stg-store.gitbook.io/documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://stg-store.gitbook.io/documentation/scripts/custom-frame/configuration.md).

# Configuration

<mark style="color:$success;">Config.lua</mark>

```lua
STG = {}

STG.Language = "en" -- en, fr, de
STG.Distance = 25.0
STG.webhook = ""

STG.Locale = {
    ["en"] = {
        near = "The frame near you is too close!",
        remove = "[E] ~b~Remove your frame",
        removing = "Frame removing.."
    },
    ["de"] = {
        near = "Der Rahmen in Ihrer Nähe ist zu nah!",
        remove = "[E] ~b~Entfernen Sie Ihren Rahmen",
        removing = "Rahmen entfernen.."
    },
    ["fr"] = {
        near = "Le cadre près de chez vous est trop proche!",
        remove = "[E] ~b~Retirez votre cadre",
        removing = "Retrait du cadre.."
    }
}
```
