Installation

Quasar Multijob is an advanced job system for FiveM that lets players hold multiple jobs at once, with fully configurable limits. Featuring a sleek UI, command/key access, and instant join/leave options, it offers complete career flexibility. A built-in badge system allows bosses to assign ranks and recognition. Compatible with ESX and QBCore, it delivers dynamic and immersive job management.


Download Script

To download the assets needed for this script, you must access the official Cfx.re portal, where all assets purchased through Tebex are managed.

  1. Go to the following link: 🔗 https://portal.cfx.re/assets/granted-assets

  2. Log in with the same Cfx.re account you used to make the purchase.

  3. In the list of granted assets, find and download the following:

  • Multijob


Download Dependencies

This script requires some mandatory dependencies to function correctly. Make sure to download and extract them inside your server’s main directory, keeping their original folder structure intact.


Remove Other Scripts

This script may cause conflicts or errors if you use other multijob systems on your server. It’s strongly recommended to remove them completely before installation to prevent compatibility or functionality issues.


Server.cfg Placement

This script must always start after es_extended or qb-core, never before. We recommend placing it below in your server.cfg, ensuring that all its dependencies are started first to prevent errors or unexpected behavior.


Database Setup

This script includes an essential database required for its operation. You must import it before starting your server, preferably using HeidiSQL or any other manager compatible with MariaDB/MySQL.

DATABASE ESX/QBCORE
CREATE TABLE IF NOT EXISTS `qs_multijob` (
  `identifier` VARCHAR(46) NOT NULL,
  `job` VARCHAR(100) NOT NULL,
  `grade` INT(10) NOT NULL DEFAULT 0,
  `badges` TEXT DEFAULT NULL,
  PRIMARY KEY (`identifier`, `job`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;