💾Installation
Download pp-bridge from GitHub
Follow pp-bridge installation steps here
Download last version from Keymaster
Add this into your server.cfg
ensure pp-bossmenu
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;
Generate
credentials.json
file by following this video.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();
Restart server
Last updated
Was this helpful?