Project M
  • FAQ
  • Asset Escrow
  • pm_queue
    • Features
    • Installation
    • Config.lua
    • Verification Themes
    • Queue Themes
    • Common Issues
  • pm_vpark
    • Features
    • Installation
    • Config.lua
Powered by GitBook
On this page
  1. pm_vpark

Installation

  1. After downloading the resource from keymaster, extract the folder then place it in you resources folder in your server.

  2. Inside the pm_vpark resource, open config.lua and install sql ( if you dont have owned_vehicles, use the one below )

  3. 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`)
);
PreviousFeaturesNextConfig.lua

Last updated 2 months ago