Installation

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

  1. Place the script in your resources folder

  2. Add ensure bk_doj to your server.cfg. Make sure it starts after the framework resources.

  3. Run the following SQL code with your preferred SQL client (HeidiSQL recommended). Make sure you select your framework's database:

INSERT INTO `addon_account` (name, label, shared) VALUES
	('society_doj', 'D.O.J', 1)
;

INSERT INTO `datastore` (name, label, shared) VALUES
	('society_doj', 'D.O.J', 1)
;

INSERT INTO `jobs` (name, label) VALUES
	('doj', 'D.O.J')
;

INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
	('doj', 0, 'lawyer', 'Lawyer', 500, '{}', '{}'),
	('doj', 1, 'prosecutor', 'Prosecutor', 500, '{}', '{}'),
	('doj', 2, 'judge', 'Judge', 1000, '{}', '{}'),
	('doj', 3, 'chief_judge', 'Chief Judge', 1500, '{}', '{}')
;
  1. Modify the config to your liking and specific resources.

  2. Enjoy!

For support, join our discord

Last updated

Was this helpful?