Installation
Step-by-step guide to adding the BK DOJ to your server.
Place the script in your
resources
folderAdd
ensure bk_doj
to yourserver.cfg
. Make sure it starts after the framework resources.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, '{}', '{}')
;
Modify the config to your liking and specific resources.
Enjoy!
Last updated
Was this helpful?