Page cover image

Installation

1. Log in to your keymaster account

Connect via this site: https://keymaster.fivem.net/ with your CFX account to which your purchase was made on the store https://www.var-fivem.com/

2. Download resource

Go to the Granted Assets category and download the most recent version of the Multi Character

3. Edit the scripts to align with the standard core resources

@esx_multicharacter

  1. Delete esx_multicharacter folder.

  2. Open @es_extended/config.lua and set GetResourceState("Var-MultiChar") ~= "missing" to Config.Multichar

  3. Add SQL

CREATE TABLE `multicharacter_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';

5. Launch your resource

Once the download is complete, unzip the file and drag it into the resources folder of your server.

refresh
ensure Var-MultiChar

Last updated