Installation

Step by step to install the script.

1.- Dowload the script from cfx.portal.

2.- Unpack the script and set the config.lua for ur core and others.

3.- Drop the database table:

CREATE TABLE IF NOT EXISTS `rx56_permvehicles` (
  `plate` varchar(50) NOT NULL,
  `pos` longtext DEFAULT NULL,
  `vehicle` longtext DEFAULT NULL,
  `mods` longtext DEFAULT NULL,
  `heading` varchar(50) DEFAULT NULL,
  `persist` int(11) DEFAULT 1,
  `trailer` int(11) DEFAULT 0,
  `trailer_pos` longtext DEFAULT NULL,
  `trailer_model` varchar(50) DEFAULT NULL,
  `trailer_mods` longtext DEFAULT NULL,
  `hide` int(11) DEFAULT 0,
  `last_updated` DATETIME DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
  PRIMARY KEY (`plate`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_general_ci;

4.- Ensure the script and enjoy.

Last updated