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

# Configuration

## Config File

```lua
Config = {}

Config.Debug = false

Config.Framework = 'qbcore' -- 'qbcore' or 'esx'

Config.Lang = {
    ['unknown'] = 'Desconocido',
    ['anonymous'] = 'Anónimo',
    ['prefix'] = '#'
}

Config.Target = 'ox_target' -- false 
Config.Command = 'known' -- false to disble command | true: /known <id>

Config.Cooldown = 10 -- in seconds, delay between requests
Config.RenderDistance = 10.0 -- in meters

Config.Text = {
    FontType = 0,
    FontColor = {r = 255, g = 255, b = 255},
    TalkingColor = {r = 0, g = 255, b = 0},
    DeadColor = {r = 255, g = 0, b = 0},
    FontSize = 1.4,
}

Config.SaludateAnimation = true

Config.KeyBind = {
    ToggleShowID = 'CAPITAL',  -- false to disable keybind
}
```
