Installation
1. Download Resource
Download the purchased resource from CFX Portal - the official site of FiveM with purchased resources.
2. Import Database Tables
This is a very important step - without it, the script will not work properly. Paste the SQL code into your database.
Not sure how to do it?
No worries - we've prepared a short guide that shows you step by step how to import an SQL file into your database: 👉 Click here to view the tutorial.
If you currently have an owned_vehicles table in your database, maybe your legacy garage system is compatible with vms_garagesv2 system.
owned_vehicles
If you want to create a new table:
CREATE TABLE IF NOT EXISTS `owned_vehicles` (
`owner` varchar(80) DEFAULT NULL,
`company` varchar(50) DEFAULT NULL,
`gang` varchar(50) DEFAULT NULL,
`plate` varchar(8) DEFAULT NULL,
`vin` varchar(17) DEFAULT NULL,
`netid` int(11) DEFAULT NULL,
`milage` int(11) DEFAULT NULL,
`vehicle` longtext DEFAULT NULL,
`type` varchar(50) NOT NULL DEFAULT 'vehicle',
`position` longtext DEFAULT NULL,
`garage` varchar(50) DEFAULT NULL,
`garageSpotID` int(11) DEFAULT NULL,
`parking_date` int(11) DEFAULT NULL,
`impound_date` int(11) DEFAULT NULL,
`impound_data` longtext DEFAULT NULL,
`insurance` longtext DEFAULT NULL,
`tuning_data` longtext DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;If you want to add the required columns to the current table:
ALTER TABLE `owned_vehicles`
ADD COLUMN `type` varchar(50) NOT NULL DEFAULT 'vehicle',
ADD COLUMN `company` varchar(50) DEFAULT NULL,
ADD COLUMN `gang` varchar(50) DEFAULT NULL,
ADD COLUMN `vin` varchar(17) DEFAULT NULL,
ADD COLUMN `netid` int(11) DEFAULT NULL,
ADD COLUMN `milage` int(11) DEFAULT NULL,
ADD COLUMN `position` longtext DEFAULT NULL,
ADD COLUMN `garage` varchar(50) DEFAULT NULL,
ADD COLUMN `garageSpotID` int(11) DEFAULT NULL,
ADD COLUMN `parking_date` int(11) DEFAULT NULL,
ADD COLUMN `impound_date` int(11) DEFAULT NULL,
ADD COLUMN `impound_data` longtext DEFAULT NULL,
ADD COLUMN `insurance` longtext DEFAULT NULL
;parkings
CREATE TABLE IF NOT EXISTS `parkings` (
`owner` varchar(100) DEFAULT NULL,
`ownerName` varchar(220) DEFAULT NULL,
`parking` varchar(200) NOT NULL,
`space` int(11) NOT NULL DEFAULT 0,
`time` bigint(20) NOT NULL DEFAULT 0
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;3. Environment Requirements
4. Start Resource
To start a resource in your server.cfg, ensure that it begins after your framework has been initiated. For instance, if you are using a framework like es_extended, you should start resource after it, like so:
Ensure there are no syntax errors or incorrect paths in your server.cfg.
Last updated