# Configuration

## Change language

{% hint style="warning" %}
If you change the language, make sure the file also exists under `./locales` and the language exists under `./html/language.js`
{% endhint %}

Change the value to the language you want to use

```lua
Config.Locale = 'en'
```

## Using Blackmoney / Money as Items

If you have money and black money as items, then you should set the `Config.IsBlackMoneyItem` value to `true`. Then adjust the item names. If you do not have the money as items, set the correct accounts

```lua
Config.IsBlackMoneyItem = true
Config.BlackMoneyAccount = 'black_money'
Config.BlackMoneyItem = 'black_money'
Config.MoneyAccount = 'money'
Config.MoneyItem = 'cash'
```

## Add custom Notify

If you want to change the default notify messages, change the value in the config.

```lua
function SendNotify(message, _type)
    exports['mxo-notify']:Alert('Moneywash', message, 4000, _type)
end
```
