Installation

1. Download resource

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 = true
Config.Identity = true

STEP 3

Add the required sql file

CREATE TABLE `multichars_slots` (
    `identifier` VARCHAR(60) NOT NULL,
    `slots` INT(11) NOT NULL,
    PRIMARY KEY (`identifier`) USING BTREE,
    INDEX `slots` (`slots`) USING BTREE
) ENGINE=InnoDB;

ALTER TABLE `users` ADD COLUMN `disabled` TINYINT(1) NULL DEFAULT '0';

Last updated