Installation
Download the purchased resource from keymaster - the official site of fivem with purchased resources.
Unzip the
g-job-vehicle-shop
Create a Folder - In your resources directory, create a new folder and name it
[g-scripts]
if it has not already been created.Drag
g-job-vehicle-shop
in to[g-scripts]
Arrangement
Add this line in your server.cfg file
ensure [g-scripts]
Requirements
oxmysql - https://github.com/overextended/oxmysql
ox_target - https://github.com/overextended/ox_target
qb-target - https://github.com/qbcore-framework/qb-target
Database Sql
CREATE TABLE `g_ownable_vehicles` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`identifier` VARCHAR(46) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`name` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`plate` VARCHAR(50) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`date` DATE NULL DEFAULT NULL,
`job` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
`grade` VARCHAR(255) NULL DEFAULT NULL COLLATE 'utf8mb4_general_ci',
PRIMARY KEY (`id`) USING BTREE
)
COLLATE='utf8mb4_general_ci'
ENGINE=InnoDB
AUTO_INCREMENT=84
;
Items
Last updated