-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
100 lines (94 loc) · 1.35 KB
/
config.lua
File metadata and controls
100 lines (94 loc) · 1.35 KB
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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
Config = {}
Config.key = 38
Config.blip = {
type = 225,
string = 'Garage'
}
Config.title = 'Garage'
Config.notification = 'Press ~INPUT_PICKUP~ to open garage'
Config.plate = 'rent'
Config.points = {
{
coords = vec3(-240, -993, 28.3),
unique = true,
ped = {
model = 'u_m_m_bikehire_01',
heading = 223
},
vehicles = {
bmx = {
price = 50
},
cruiser = {
price = 50
},
fixter = {
price = 50
},
scorcher = {
price = 50
},
tribike = {
price = 50
},
tribike2 = {
price = 50
},
tribike3 = {
price = 50
},
}
},
{
coords = vec3(428, -1012, 28),
job = 'police',
ped = {
model = 's_m_y_cop_01',
heading = 120
},
vehicles = {
policeb = {},
police = {},
police2 = {
grade = 1
},
police3 = {
grade = 2
},
policet = {
grade = 3
},
}
},
{
coords = vec3(458, -1026, 28),
job = 'police',
blip = true,
ped = {
model = 'mp_m_fibsec_01',
heading = 50
},
vehicles = {
fbi = {
grade = 4
},
fbi2 = {
grade = 4
},
}
},
{
coords = vec3(286, -1437, 29),
job = 'ambulance',
ped = {
model = 's_m_m_doctor_01',
heading = 17
},
vehicles = {
lguard = {},
ambulance = {
grade = 1
},
}
},
}