📒Installation ESX

How to install and how to use multicharacter for ESX framework users. You can learn them here.

You should have read and done the How to set it up page before proceeding with these steps.


First of all, do this.

  • Go here: es_extended/config.lua

  • Find the Config.Multicharacter Variable and set its value to true only

  • The old default state. We will delete it and replace it with true.

  • Config.Multichar = GetResourceState("esx_multicharacter") ~= "missing"
  • Config.Multichar = true

Remove or Disable them esx_identity, esx_multicharacter


Connecting Multicharacter to ESX

Let's go inside the Wais-multicharacterv2 folder and open the Config.lua file with an editor.

Change the Config.Framework variable in the first lines of the Config file as below.

Config.Framework = {
    ["Framework"] = "esx", -- esx or qbcore
    ["ResourceName"] = "es_extended ", -- es_extended or qb-core or your resource name
    ["NewCore"] = true, -- If you use the new core, set this to true ( esx or qb ). If you are using the old one, make it false and edit the event below according to yourself.
    ["SharedEvent"] = "esx:getSharedObject" -- Event name for old cores.
}

If the name of the core script is different, replace the value of the [“ResourceName”] variable with the script name

[“ResourceName”] = "your core resources name"

Last updated