> ## Documentation Index
> Fetch the complete documentation index at: https://docs.revoscripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Configuration

> Customize how Revo EcoWipe behaves for your admins and server needs.

<Info>
  Configuration is done in the `config.lua` file located in the `revo_ecowipe` directory.
</Info>

## Command Configuration

You can change the command used to open the UI:

```lua theme={null}
Config.OpenCommand = 'ecowipe' -- Change this to any command you prefer
```

## Permissions

Define who can access the EcoWipe interface. Permissions depend on your framework:

```lua theme={null}
Config.AllowedGroups = {
  admin = true,
  superadmin = true,
  god = true
}
```

* **ESX**: Uses group names like `'admin'`, `'superadmin'`
* **QBCore**: Uses role names like `'admin'`, `'god'`

## Wipe Options

You can enable or disable specific wipe features:

```lua theme={null}
Config.WipeOptions = {
  Money = true,
  Inventory = true
}
```

* **Money**: Wipes cash and bank balances
* **Inventory**: Clears player items

## Localization

Set your default language:

```lua theme={null}
Config.DefaultLocale = 'en'
```

Supported languages include: `'en'`, `'es'`, `'fr'`, `'de'`, `'it'`, `'pt'`, `'ru'`, `'tr'`, `'pl'`, `'zh'`, `'ar'`
