Standalone
Agency-Garage Instalação
O sistema de garagem completo para FiveM.
v1.0.1Pago3 Páginas

01Instalação
- 1Extrair Agency-Garage para a sua pasta resources
- 2Importar sql/install.sql para a sua base de dados
- 3Adicionar ensure Agency-Garage ao server.cfg
- 4Configurar localizações de garagem e categorias no config.lua
- 5Reiniciar o servidor
02Dependências
oxmysql (obrigatório (persistência MySQL))QBCore / ESX (opcional (Standalone funciona de imediato))
03Arquivo SQL
Importe este arquivo SQL no seu banco de dados antes de iniciar o 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.