Installation

Asset Download

1

Logging into your CFX Portal

Login to your CFX account by Clicking Here

2

Find your assets

Navigate to Granted Assets, locate the newly acquired asset(s), and download them.


Download Dependencies

When downloading a dependency, ensure the file is properly unzipped and does not have "-main" at the end of its name. If it does, remove it. Follow the dependency guide completely and use all the required files, as these dependencies are mandatory


Updating artifacts and game build

To prevent common server issues, updating to the latest artifacts and gamebuild is crucial. Follow these steps:

Updating Artifacts

1

To update your artifacts, download the latest version (usually the top one) for your operating system from the official links provided:

2

Update Gamebuild

Ensuring you use the latest gamebuild is essential to access new features and avoid bugs/issues Find the latest official FiveM game build versions here. Click Here then edit the server.cfg file and add the following line:

sv_enforceGameBuild 3258

3

Ensuring Correctly

To ensure everything starts correctly on your server you must add or edit a few lines in your server.cfg


Database Installation

Recommendation: Use HeidiSQL as it includes the latest version of MariaDB. You can use phpMyAdmin, but proceed at your own risk if issues arise.

DROP TABLE IF EXISTS `fs_queue`; -- This line will delete your current table if it's present

CREATE TABLE `fs_queue` (
    `id` int(11) NOT NULL AUTO_INCREMENT,
    `license` varchar(255) DEFAULT NULL,
    `reserved` BOOLEAN NOT NULL DEFAULT FALSE,
    `priority` int(11) DEFAULT 0,
    PRIMARY KEY (`id`), 
    UNIQUE KEY `license` (`license`)
);

-- Don't use this data unless you want to set preinstalled values
INSERT INTO `fs_queue` (`license`, `reserved`, `priority`)
VALUES 
    ('772968443506458634', TRUE, 100000) -- I'll take prio :)

Last updated