forked from overextended/ox_police
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
40 lines (38 loc) · 980 Bytes
/
config.lua
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
Config = {}
Config.PoliceGroups = {
{
name = 'police',
label = 'Police',
grades = {
{
label = 'Cadet',
permissions = {
{ groupName = 'police', grade = 1, permission = 'vehicle.police', value = 'allow' }
}
},
{ label = 'Officer' },
{ label = 'Sergeant' },
{ label = 'Lieutenant' },
{ label = 'Captain' },
{ label = 'Chief' },
},
type = 'job',
},
}
Config.PoliceVehicles = {
{
model = 'police',
label = 'Police Cruiser',
requiredPermission = 'group.police.vehicle.police'
},
{
model = 'police2',
label = 'Police Buffalo',
requiredPermission = 'group.police.vehicle.police2'
},
{
model = 'police3',
label = 'Police Interceptor',
requiredPermission = 'group.police.vehicle.police3'
}
}