QB / ESX
Agency-Blackmarket
Vollständiges Schwarzmarktsystem mit 5-stufigem Ruf, Hacking-Minispielen, Blitzangeboten, Geldwäsche, Fahrzeughandel und Polizeialarmen. Erkennt automatisch QBCore oder ESX.

01 Installation
Agency-Blackmarket in das resources-Verzeichnis legen
blackmarket_reputation.sql in die Datenbank importieren
ensure Agency-Blackmarket in server.cfg hinzufügen
Optional: Agency-Notify + Agency-Progressbar installieren
Abhängigkeiten
QBCore oder ESX — automatisch erkanntAgency-Notify — optionalAgency-Progressbar — optionalqb-target — optional
SQL Datei
Importiere diese SQL-Datei in deine Datenbank bevor du die Ressource startest:
-- Agency-Blackmarket Reputation System Database Table
-- Import this file into your MySQL database to create the required table
CREATE TABLE IF NOT EXISTS `blackmarket_reputation` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`citizenid` VARCHAR(50) NOT NULL UNIQUE,
`reputation` INT DEFAULT 0,
`created_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP,
`updated_at` TIMESTAMP DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
INDEX `idx_citizenid` (`citizenid`),
INDEX `idx_reputation` (`reputation`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
-- Optional: Insert some test data
-- INSERT INTO `blackmarket_reputation` (`citizenid`, `reputation`) VALUES
-- ('TEST12345', 50),
-- ('TEST67890', 100);