-
Notifications
You must be signed in to change notification settings - Fork 2
/
esx_policejob.sql
55 lines (48 loc) · 2.43 KB
/
esx_policejob.sql
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
SET @job_name = 'police';
SET @society_name = 'society_police';
SET @job_Name_Caps = 'Police';
INSERT INTO `addon_account` (name, label, shared) VALUES
(@society_name, @job_Name_Caps, 1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
(@society_name, @job_Name_Caps, 1),
('society_police_fridge', 'police (frigo)', 1)
;
INSERT INTO `datastore` (name, label, shared) VALUES
(@society_name, @job_Name_Caps, 1)
;
INSERT INTO `jobs` (name, label, whitelisted) VALUES
(@job_name, @job_Name_Caps, 1)
;
INSERT INTO `job_grades` (job_name, grade, name, label, salary, skin_male, skin_female) VALUES
('police', 0, 'recruit', 'Student Constable', 250, '{}', '{}'),
('police', 1, 'recruit', 'Constable', 300, '{}', '{}'),
('police', 2, 'recruit', 'Senior Constable', 350, '{}', '{}'),
('police', 3, 'recruit', 'Sergeant', 400, '{}', '{}'),
('police', 4, 'recruit', 'Senior Sargeant', 450, '{}', '{}'),
('police', 5, 'viceboss', 'Inspector', 500, '{}', '{}'),
('police', 6, 'viceboss', 'Chief Inspector', 550, '{}', '{}'),
('police', 7, 'viceboss', 'Superintendent', 600, '{}', '{}'),
('police', 8, 'viceboss', 'Chief Superintendent', 750, '{}', '{}'),
('police', 9, 'boss', 'Commander', 1000, '{}', '{}'),
('police', 10, 'boss', 'Chief Commander', 1250, '{}', '{}'),
('police', 11, 'boss', 'Deputy Assistant Commissioner', 1500, '{}', '{}'),
('police', 12, 'boss', 'Deputy Commissioner', 1750, '{}', '{}'),
('police', 13, 'boss', 'Commissioner', 2000, '{}', '{}'),
('police', 14, 'boss', 'Commissioner General', 2500, '{}', '{}'),
('offpolice', 0, 'recruit', 'Student Constable', 1, '{}', '{}'),
('offpolice', 1, 'recruit', 'Constable', 1, '{}', '{}'),
('offpolice', 2, 'recruit', 'Senior Constable', 1, '{}', '{}'),
('offpolice', 3, 'recruit', 'Sergeant', 1, '{}', '{}'),
('offpolice', 4, 'recruit', 'Senior Sergeant', 1, '{}', '{}'),
('offpolice', 5, 'viceboss', 'Inspector', 1, '{}', '{}'),
('offpolice', 6, 'viceboss', 'Chief Inspector', 1, '{}', '{}'),
('offpolice', 7, 'viceboss', 'Superintendent', 1, '{}', '{}'),
('offpolice', 8, 'viceboss', 'Chief Superintendent', 1, '{}', '{}'),
('offpolice', 9, 'boss', 'Commander', 1, '{}', '{}'),
('offpolice', 10, 'boss', 'Chief Commander', 1, '{}', '{}'),
('offpolice', 11, 'boss', 'Deputy Assistant Commissioner', 1, '{}', '{}'),
('offpolice', 12, 'boss', 'Deputy Commissioner', 1, '{}', '{}'),
('offpolice', 13, 'boss', 'Commissioner', 1, '{}', '{}'),
('offpolice', 14, 'boss', 'Commissioner General', 1, '{}', '{}'),
;