Common Problems

Please note that most common errors can be caused by a bad installation or a poorly done update, always verify this using the default asset before communicating your problem to us, this will save time.

If you've made it this far, congratulations, you're one of the few customers reading through the documentation and taking an interest in fixing problems that come your way using our resources.

This section is intended for the common problems that some players usually have when using this asset, we ask you to check one by one to find your problem here and save long waits on community tickets. If your problem still persists, do not hesitate to contact us from the Discord community by opening a ticket.


List of common problems

Deploy each section according to your problem, so you will find the solution quickly, each problem has a general and basic solution in its description that will help you solve the case.

This script replaces the multichar of esx or qbcore?

Yes, this asset replaces any multicharacter you use on your server, even the official ones.

Does this system come with char creator and spawn selector?

This system comes with a character creator and a spawn selector that are completely optional, you can both enable and disable them from the same config.

Can I disable background music?

Of course, you can configure everything.

Can I disable the spawn selector system?

Yes, you can disable said system using Config.EnableDefaultSpawnSelector.

Is this system compatible with qb-apartments?

Yes, this system works with qb-apartments by default as long as the fxmanifest.lua line is running, which will be commented or uncommented in the asset.

Can I remove the char creator and put mine in?

Yes, you can disable this system using Config.DisableCharacterCreator.

Can I disable the logout system with command?

Yes, you can disable the logout system using Config.BackCharCommand.

What is the event to trigger the logout?

The integration of this system is extremely easy, making use of the multicharacter event:backToCharacterSelect, this is on the server side. We will leave an example command to execute said event.

RegisterCommand('qs:logout', function()
    TriggerServerEvent('multicharacter:backToCharacterSelect')
end, false)
Does this system include starter items?

This setting is completely basic, but if you want to remove it you can simply change it to the following Config.StarterItems = {} or comment inside. Below we will leave the default configuration to better understand your configuration.

Config.StarterItems = {
    { item = 'phone', amount = 1 },
}
Failed to load script @qb-apartments/config.lua.

This is a common warning, since this event is enabled in fxmanifest.lua, just comment or delete said line from this file and that's it.

I use illenium-appearance and spawn without my correct clothes/body

In case when you spawn you do not appear with the correct clothing or appearance, here is the solution. If not, create a completely new txadmin base and install as explained in the official illenium-appearance docs.

  1. Go to your illenium-appareance and open the manifest, look for the lines that say provides {esx_skin, skin_changer} and proceed to remove them.

  2. Look in your scripts if the following line exists in the manifests dependencies{esx_skin, skin_changer} and remove it.

  3. Clear cache and restart your server.

Last updated