💾Installation

  1. Download pp-bridge from GitHub

  2. Follow pp-bridge installation steps here

  3. Download last version from Keymaster

  4. Add this into your server.cfg

ensure pp-bossmenu
  1. If you are not using any multijob system then insert this into your database

CREATE TABLE IF NOT EXISTS `player_jobs` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `identifier` varchar(46) DEFAULT NULL,
  `job` varchar(255) DEFAULT NULL,
  `grade` int(11) DEFAULT NULL,
  PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=510 DEFAULT CHARSET=utf8mb3 COLLATE=utf8mb3_unicode_ci;
  1. Generate credentials.json file by following this video.

  2. If you are using ESX framework, insert this into database:

ALTER TABLE `owned_vehicles`
ADD COLUMN IF NOT EXISTS `job` varchar(50) DEFAULT NULL,
ADD COLUMN IF NOT EXISTS `notes` text DEFAULT NULL;

ALTER TABLE `users`
ADD COLUMN IF NOT EXISTS `badge` varchar(50) DEFAULT NULL;

ALTER TABLE `user_licenses`
ADD COLUMN IF NOT EXISTS `date` timestamp NULL DEFAULT current_timestamp();
  1. Restart server

Last updated