> 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/bossmenu/configuration.md).

# Configuration

{% hint style="info" %}
Change in Config.Framework your Framework
{% endhint %}

To change the framework it is important to know that you must do it in biyei\_utils

```lua
Config.Framework = 'auto' -- 'auto', 'esx', 'qbcore' | Select the framework you are using
```

## Change Language

To change the language it is important to know that you must do it in biyei\_utils

```lua
Config.Language = 'es' -- 'es', 'en' | Select the language you are using
```

## Config File

```lua
Config = {}

Config.Debug = false -- Temporal para debug

Config.Language = 'es' -- 'es', 'en' | Select the language you are using
Config.Framework = 'auto' -- 'auto', 'esx', 'qbcore' | Select the framework you are using
Config.Target = 'ox_target' -- 'ox_target', 'qb-target' or false | Select the target you are using

Config.MoneyWashSystem = {
    Account = 'black_money',
}


Config.DefaultSocietySystem = true -- Enabled our system payments
Config.DefaultChangeSalary = true -- Can change the salary of the job
Config.DefaultPayoutSociety = true -- Can payout the salary to the society
Config.DefaultPayoutTime = 30 -- Set the time for the payout in minutes
Config.PaymentMethod = 'bank' -- Set the payment method for the payout | 'bank', 'cash'

Config.Locations = {
    {
        job = 'police', -- job name | Set the job name you are using
        minGrade = 4, -- minimum grade to access the location | Set the minimum grade you are using
        coords = {
            vec3(447.1650, -974.0118, 31.0661) -- Set the coordinates of the location
        },
        Salary = {
            Enabled = Config.DefaultSocietySystem, -- Enabled our system payments
            ChangeSalary = Config.DefaultChangeSalary, -- Can change the salary of the job
            PayoutSociety = Config.DefaultPayoutSociety, -- Can payout the salary to the society
            PayoutTime = Config.DefaultPayoutTime, -- Set the time for the payout in minutes
            PaymentMethod = Config.PaymentMethod, -- Set the payment method for the payout | 'bank', 'cash'
        },
        MoneyWash = {
            Enabled = true, -- Set the money wash to enabled or disabled
            Fee = 10, -- Set the fee for the money wash in percent
        }
    },
}

Config.BalanceSystem = {
    DefaultName = 'Sistema',
    PayoutsName = 'Salario',
}


Config.Theme = {
    Colors = {
        primary = '#0094F9', -- Color principal (botones, acentos)
        background = '#015C9A', -- Color de fondo principal
        card = '#18181b', -- Color de las tarjetas/contenedores
        text = '#ffffff', -- Color del texto principal
        textMuted = '#a1a1aa', -- Color del texto secundario
        success = '#22c55e', -- Color para estados positivos
        danger = '#ef4444', -- Color para acciones destructivas/errores
    },
    BorderRadius = '0.5rem', -- Radio de borde general
}
```
