> For the complete documentation index, see [llms.txt](https://fivem.lvsoft.com.ar/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fivem.lvsoft.com.ar/qb-esx/lvs-radio/configuration.md).

# Configuration

## Configuration File

```lua
Config = {}

Config.Notify = 'lvs_lib' -- lvs_lib | ox_lib | qb | esx
Config.VoiceSystem = "pma-voice" -- pma-voice | saltychat
Config.Inventory = 'qb' -- qb | ox | esx

Config.RadioItem = "radio"
Config.MaxFrequency = 200

Config.ItemCheckLoop = true

Config.RestrictedChannels = {
    [1] = {
        police = true,
    },
    [2] = {
        ambulance = true
    },
    [3] = {
        police = true,
        ambulance = true
    },
    [4] = {
        police = true,
        ambulance = true
    },
    [5] = {
        police = true,
        ambulance = true
    },
    [6] = {
        police = true,
        ambulance = true
    },
    [7] = {
        police = true,
        ambulance = true
    },
    [8] = {
        police = true,
        ambulance = true
    },
    [9] = {
        police = true,
        ambulance = true
    },
    [10] = {
        police = true,
        ambulance = true
    }
}
```
