Standalone
Agency-Garage Instalación
El sistema de garaje completo para FiveM.
v1.0.1De pago3 Páginas

01Instalación
- 1Extraer Agency-Garage a tu carpeta resources
- 2Importar sql/install.sql a tu base de datos
- 3Añadir ensure Agency-Garage a server.cfg
- 4Configurar las ubicaciones y categorías de garaje en config.lua
- 5Reiniciar el servidor
02Dependencias
oxmysql (requerido (persistencia MySQL))QBCore / ESX (opcional (Standalone funciona de fábrica))
03Archivo SQL
Importa este archivo SQL en tu base de datos antes de iniciar el recurso:
-- =====================================================================
-- 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.