Installation
Step-by-step guide to adding the BK Political System to your server.
Install all dependencies required to run the script.
Before installing, check if you already have them, because they are usually installed by default.
NOTE: Be sure that you have the latest versions of the dependencies.
Go to your FiveM Portal and download
bk_politicalsystem
.
After downloading, extract
bk_politicalsystem.
Drag and drop
bk_politicalsystem
into your resources directory and add it in yourserver.cfg
.Configure your script.
Be sure to configure these options:
Config.Interface = { Menu = 'ox', -- options 'qb', 'ox', 'custom' -- editable in cl_customizable_functions.lua Input = 'ox', -- options 'qb', 'ox', 'custom' -- editable in cl_customizable_functions.lua Notifications = 'ox', -- options 'esx', 'qb', 'ox', 'custom' -- editable in cl_customizable_functions.lua TextUI = 'ox' -- options 'esx', 'qb', 'ox', 'custom' -- editable in cl_customizable_functions.lua }
Insert the following SQL to your database.
INSERT INTO `jobs` (name, label) VALUES ('politician', 'Politician'); INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES ('politician',0,'deputy','Deputy',200,'{}','{}'), ('politician',1,'chairman','Chairman of the Parliament',300,'{}','{}'), ('politician',2,'president','President',500,'{}','{}');
If you want to use the tax system, follow the installation guide provided here.
Start/Restart your server.
Last updated
Was this helpful?