Installation
Asset Download
Logging into your CFX Portal
Login to your CFX account by Clicking Here
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
To update your artifacts, download the latest version (usually the top one) for your operating system from the official links provided:
Windows: Windows Artifacts
Linux: Linux Artifacts
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
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