Installation

Quasar Gangwars is a territory control system for FiveM where gangs capture and defend zones for income, perks, and dominance. With dynamic colors, passive rewards, drug access, and airdrop events triggered by flares, every battle feels high-stakes. Fully customizable with timers, rewards, and map zones, it integrates with ESX, QBCORE or standalone, delivering immersive, competitive gang warfare.


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:

    • Gangwars


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 gang wars 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
DROP TABLE IF EXISTS `gang_areas`;
CREATE TABLE `gang_areas` (
    `owner` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
    `area` VARCHAR(50) NOT NULL COLLATE 'utf8mb4_general_ci',
    PRIMARY KEY (area) USING BTREE
) COLLATE='utf8mb4_general_ci' ENGINE=InnoDB;