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_led` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `name` varchar(50) DEFAULT NULL,
  `x` float DEFAULT NULL,
  `y` float DEFAULT NULL,
  `z` float DEFAULT NULL,
  `heading` float DEFAULT NULL,
  `default_text` varchar(255) DEFAULT '',
  `velocity` float DEFAULT 8,
  `job` varchar(50) DEFAULT NULL,
  `type` varchar(50) DEFAULT 'default',
  `status` int(11) DEFAULT 1,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=25 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_general_ci;`

4.- Ensure the script and enjoy.

Last updated