# 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
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.mxo-scripts.com/mxo-moneywash/configuration.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
