> 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/character-prefix-is-incorrect.md).

# Character Prefix is incorrect

Such issue occurs when Config.Multichar variable was not set and you've joined up a server

{% hint style="info" %}
In some cases that value was set to false because you didn't need multi-character feature on your server.
{% endhint %}

So in order to fix it there's 2 ways:

### If your server was running on Config.Multichar = false and you want to keep the players

The only way to do so is to add `char1:` prefix for every player. Take a note that it needs to be also changed in every other table containing the identifier of the player.

You can use that query and surely for the other tables you need to change the table name from users and the identifier to the identifier your table uses.

```sql
UPDATE users
SET identifier = CONCAT('char1:', identifier)
WHERE identifier NOT LIKE 'char%';
```

### If you are on the fresh recipe

Fastest way is to remove your character by using command in txAdmin > Live Console\
`multicharacter_esx_remove_users`
