Installation

Step-by-step guide to adding the BK Political System to your server.

  1. 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.

  1. Go to your FiveM Portal and download bk_politicalsystem.

After downloading, extract bk_politicalsystem.

  1. Drag and drop bk_politicalsystem into your resources directory and add it in your server.cfg.

  2. 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
}
  1. 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,'{}','{}');
  1. If you want to use the tax system, follow the installation guide provided here.

  2. Start/Restart your server.

For support, join our discord

Last updated

Was this helpful?