Installation
After downloading the resource from keymaster, extract the folder then place it in you resources folder in your server.
Inside the pm_vpark resource, open config.lua and install sql ( if you dont have owned_vehicles, use the one below )
Open your server.cfg file and add "ensure pm_vpark" to start the resource.
SQL
CREATE TABLE `owned_vehicles` (
`id` INT(11) NOT NULL AUTO_INCREMENT,
`owner` VARCHAR(60) NOT NULL,
`plate` VARCHAR(12) NOT NULL,
`coords` LONGTEXT DEFAULT NULL,
`stored` TINYINT(4) NOT NULL DEFAULT 0,
`vehicle` LONGTEXT DEFAULT NULL,
`heading` VARCHAR(50) DEFAULT NULL,
`parking` VARCHAR(60) DEFAULT NULL,
`pound` VARCHAR(60) DEFAULT NULL,
`label_name` VARCHAR(150) DEFAULT NULL,
`mileage` INT(11) DEFAULT 0,
`dataimpound` LONGTEXT DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE (`plate`),
INDEX `idx_owner` (`owner`)
);
Last updated