> For the complete documentation index, see [llms.txt](https://zsx-development.gitbook.io/docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://zsx-development.gitbook.io/docs/resources/multicharacter/integration-errors/config.multichar-value-is-not-set-to-true.md).

# Config.Multichar value is not set to true

Such case is the most common thing that people do (to be more exact, doesn't) is to properly set the Config.Multichar value to true while being on ESX.

If you won't set everything properly before joining up ESX will create new empty user in the users table that will prevent you from joining up until you remove it. [Here's](https://zsx-development.gitbook.io/docs/resources/multicharacter/integration-errors/pages/ugV6fywmG9MmvvFkIYR8#your-es_extended-does-not-use-config.multichar) more information about it.

#### ESX Legacy (latest versions)

Headover to the es\_extended/shared/config/main.lua and find

```lua
Config.Multichar = GetResourceState("esx_multicharacter") ~= "missing"
```

And set it to:

```lua
Config.Multichar = true
```

Simple as that.
