Installation

1. Download resource

Download the purchased resource from keymaster - the official site of fivem with purchased resources.

2. Server changes

STEP 1

Remove esx_multicharacter from your server.

If you plan to use vms_identity, also remove esx_identity to avoid conflicts.

STEP 2

If you are using an older ESX e.g. 1.8.X, 1.9.X the configuration file path is @es_extended/config.lua

Edit the configuration file located at @es_extended/shared/config/main.lua to ensure that the server is properly configured to support the new system. Make sure to set the following parameters:

Config.Multichar = true
Config.Identity = true

These settings enable multi-character functionality and user identity management, ensuring compatibility with the new system architecture.

STEP 3

Execute the following SQL commands to add the necessary database structures:

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

Was this helpful?