-
Notifications
You must be signed in to change notification settings - Fork 0
/
esx_vagosjob.sql
44 lines (35 loc) · 1.11 KB
/
esx_vagosjob.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
INSERT INTO `addon_account` (name, label, shared) VALUES
('society_vagos','Vagos',1)
;
INSERT INTO `datastore` (name, label, shared) VALUES
('society_vagos','Vagos',1)
;
INSERT INTO `addon_inventory` (name, label, shared) VALUES
('society_vagos', 'Vagos', 1)
;
INSERT INTO `jobs` (`name`, `label`, `whitelisted`) VALUES
('vagos', 'Vagos', 1);
--
-- Déchargement des données de la table `jobs_grades`
--
INSERT INTO `job_grades` (`job_name`, `grade`, `name`, `label`, `salary`, `skin_male`, `skin_female`) VALUES
('vagos', 0, 'soldato', 'Ptite-Frappe', 0, '{}', '{}'),
('vagos', 1, 'capo', 'Capo', 0, '{}', '{}'),
('vagos', 2, 'consigliere', 'Chef', 0, '{}', '{}'),
('vagos', 3, 'boss', 'Patron', 0, '{}', '{}');
CREATE TABLE `fine_types_gang` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`label` varchar(255) DEFAULT NULL,
`amount` int(11) DEFAULT NULL,
`category` int(11) DEFAULT NULL,
PRIMARY KEY (`id`)
);
INSERT INTO `fine_types_gang` (label, amount, category) VALUES
('Raket',3000,0),
('Raket',5000,0),
('Raket',10000,1),
('Raket',20000,1),
('Raket',50000,2),
('Raket',150000,3),
('Raket',350000,3)
;