Standalone
Agency-Garage Installation
Das umfassende Garagensystem für FiveM. Fahrzeuge einlagern, holen und verwalten, über mehrere Garagenstandorte hinweg.
v1.0.1Bezahlt3 Seiten

01Installation
- 1Agency-Garage in deinen resources-Ordner entpacken
- 2sql/install.sql in deine Datenbank importieren
- 3ensure Agency-Garage in server.cfg hinzufügen
- 4Garagen-Standorte & Kategorien in config.lua konfigurieren
- 5Server neustarten
02Abhängigkeiten
oxmysql (erforderlich (MySQL-Persistenz))QBCore / ESX (optional (Standalone funktioniert sofort))
03SQL Datei
Importiere diese SQL-Datei in deine Datenbank bevor du die Ressource startest:
-- =====================================================================
-- Agency Garage - Database (SUPPORT FILE)
--
-- You normally do NOT need to run this. With Config.AutoSetupDatabase = true
-- the script creates/adds everything on its own.
-- This file only exists for support cases or if auto-setup is disabled.
-- =====================================================================
-- ---------- STANDALONE ----------
-- Only needed if you run WITHOUT QBCore/ESX (Config.Framework = 'standalone').
CREATE TABLE IF NOT EXISTS `agency_garage_vehicles` (
`id` INT AUTO_INCREMENT PRIMARY KEY,
`identifier` VARCHAR(64) NOT NULL,
`plate` VARCHAR(12) NOT NULL,
`model` VARCHAR(64) NOT NULL,
`props` LONGTEXT,
`garage` VARCHAR(64) DEFAULT 'legion',
`state` TINYINT DEFAULT 1,
`fuel` FLOAT DEFAULT 100,
`engine` FLOAT DEFAULT 1000,
`body` FLOAT DEFAULT 1000,
`depotprice` INT DEFAULT 0,
`category` VARCHAR(16) DEFAULT 'car',
UNIQUE KEY `plate` (`plate`),
INDEX `identifier` (`identifier`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4;
-- ---------- ESX ----------
-- If your owned_vehicles table is missing these columns, uncomment them:
-- ALTER TABLE `owned_vehicles` ADD COLUMN `garage` VARCHAR(64) DEFAULT 'legion';
-- ALTER TABLE `owned_vehicles` ADD COLUMN `agency_state` TINYINT DEFAULT 1;
-- ALTER TABLE `owned_vehicles` ADD COLUMN `fuel` FLOAT DEFAULT 100;
-- ALTER TABLE `owned_vehicles` ADD COLUMN `engine` FLOAT DEFAULT 1000;
-- ALTER TABLE `owned_vehicles` ADD COLUMN `body` FLOAT DEFAULT 1000;
-- ALTER TABLE `owned_vehicles` ADD COLUMN `depotprice` INT DEFAULT 0;
-- ---------- QBCore ----------
-- player_vehicles already has state/garage/fuel/engine/body/depotprice.
-- Nothing to do.