Installation

Quasar Love Match adds romance and social interaction to your FiveM server with a lightweight, customizable dating system. Players can create profiles, match based on preferences, send gifts, and unlock relationship milestones over time. Integrated with ESX, QBCORE or standalone, it’s perfect for Valentine’s events or ongoing RP, turning casual encounters into lasting connections and fun stories.


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:

    • Love Match


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.


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 `lovematch_users` (
    `id` INT(11) NOT NULL AUTO_INCREMENT,
    `identifier` VARCHAR(90) NOT NULL DEFAULT '0' COLLATE 'latin1_swedish_ci',
    `name` VARCHAR(50) NOT NULL DEFAULT '0' COLLATE 'latin1_swedish_ci',
    `surname` VARCHAR(50) NOT NULL DEFAULT '0' COLLATE 'latin1_swedish_ci',
    `gender` VARCHAR(10) NOT NULL DEFAULT '0' COLLATE 'latin1_swedish_ci',
    `interest` VARCHAR(10) NOT NULL DEFAULT '0' COLLATE 'latin1_swedish_ci',
    `requests` TEXT NULL DEFAULT NULL COLLATE 'latin1_swedish_ci',
    PRIMARY KEY (`id`) USING BTREE
) COLLATE = 'latin1_swedish_ci' ENGINE = InnoDB;