forked from dux1993/fxserver-esx_policejob
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
85 lines (72 loc) · 2.6 KB
/
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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
Config = {}
Config.DrawDistance = 100.0
Config.MarkerType = 1
Config.MarkerSize = { x = 1.5, y = 1.5, z = 1.0 }
Config.MarkerColor = { r = 50, g = 50, b = 204 }
Config.EnablePlayerManagement = false
Config.EnableArmoryManagement = false
Config.EnableESXIdentity = false -- only turn this on if you are using esx_identity
Config.EnableNonFreemodePeds = false -- turn this on if you want custom peds
Config.EnableSocietyOwnedVehicles = false
Config.EnableLicenses = false
Config.MaxInService = -1
Config.Locale = 'fr'
Config.PoliceStations = {
LSPD = {
Blip = {
Pos = { x = 425.130, y = -979.558, z = 30.711 },
Sprite = 60,
Display = 4,
Scale = 1.2,
Colour = 29,
},
AuthorizedWeapons = {
{ name = 'WEAPON_NIGHTSTICK', price = 200 },
{ name = 'WEAPON_COMBATPISTOL', price = 300 },
{ name = 'WEAPON_ASSAULTSMG', price = 1250 },
{ name = 'WEAPON_ASSAULTRIFLE', price = 1500 },
{ name = 'WEAPON_PUMPSHOTGUN', price = 600 },
{ name = 'WEAPON_STUNGUN', price = 500 },
{ name = 'WEAPON_FLASHLIGHT', price = 80 },
{ name = 'WEAPON_FIREEXTINGUISHER', price = 120 },
{ name = 'WEAPON_FLAREGUN', price = 60 },
{ name = 'WEAPON_STICKYBOMB', price = 250 },
{ name = 'GADGET_PARACHUTE', price = 300 },
},
AuthorizedVehicles = {
{ name = 'police', label = 'Véhicule de patrouille 1' },
{ name = 'police2', label = 'Véhicule de patrouille 2' },
{ name = 'police3', label = 'Véhicule de patrouille 3' },
{ name = 'police4', label = 'Véhicule civil' },
{ name = 'policeb', label = 'Moto' },
{ name = 'policet', label = 'Van de transport' },
},
Cloakrooms = {
{ x = 452.600, y = -993.306, z = 29.750 },
},
Armories = {
{ x = 451.699, y = -980.356, z = 29.689 },
},
Vehicles = {
{
Spawner = { x = 454.69, y = -1017.4, z = 27.430 },
SpawnPoint = { x = 438.42, y = -1018.3, z = 27.757 },
Heading = 90.0,
}
},
Helicopters = {
{
Spawner = { x = 466.477, y = -982.819, z = 42.691 },
SpawnPoint = { x = 450.04, y = -981.14, z = 42.691 },
Heading = 0.0,
}
},
VehicleDeleters = {
{ x = 462.74, y = -1014.4, z = 27.065 },
{ x = 462.40, y = -1019.7, z = 27.104 },
},
BossActions = {
{ x = 448.417, y = -973.208, z = 29.689 }
},
},
}