Download the purchased resource from keymaster - the official site of fivem with purchased resources.
2. Server changes
STEP 1
Remove from server esx_multicharacter and if you are also want to use vms_identity remove esx_identity.
STEP 2
Open @es_extended/config.lua and make these important changes so that the script loads correctly and the server is adjusted to work with this system
Config.Multichar =trueConfig.Identity =true
STEP 3
Add the required sql file
CREATETABLE `multichars_slots` (`identifier`VARCHAR(60) NOT NULL,`slots`INT(11) NOT NULL,PRIMARY KEY (`identifier`) USING BTREE,INDEX`slots` (`slots`) USING BTREE) ENGINE=InnoDB;ALTERTABLE`users`ADD COLUMN `disabled`TINYINT(1) NULLDEFAULT'0';
STEP 1
Remove from server qb-multicharacter.
STEP 2
Add the required sql file
CREATETABLE `multichars_slots` (`identifier`VARCHAR(60) NOT NULL,`slots`INT(11) NOT NULL,PRIMARY KEY (`identifier`) USING BTREE,INDEX`slots` (`slots`) USING BTREE) ENGINE=InnoDB;ALTERTABLE`players`ADD COLUMN `disabled`TINYINT(1) NULLDEFAULT'0';
STEP 1
Remove from server qbx-multicharacter if you have.
STEP 2
Open @qbx_core/config.lua and make these important changes so that the script loads correctly and the server is adjusted to work with this system
Config.Characters.UseExternalCharacters =false
STEP 3
Add the required sql file
CREATETABLE `multichars_slots` (`identifier`VARCHAR(60) NOT NULL,`slots`INT(11) NOT NULL,PRIMARY KEY (`identifier`) USING BTREE,INDEX`slots` (`slots`) USING BTREE) ENGINE=InnoDB;ALTERTABLE`players`ADD COLUMN `disabled`TINYINT(1) NULLDEFAULT'0';