-
Notifications
You must be signed in to change notification settings - Fork 3
/
config.lua
37 lines (35 loc) · 1.03 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
Config = {}
Config.Garage = {
{
location = vector3(459.04708, -1017.191, 28.15582),
spawnVeh = vector3(443.1918, -1022.256, 28.567802),
heading = 93.38,
vehicles = {
{
model = "legacycvpi",
label = "LSPD Ford Crown Victoria",
normalPrice = 45000
},
{
model = "legacyfpiu",
label = "LSPD Interceptor Utility",
normalPrice = 60000
},
{
model = "legacytahoe",
label = "LSPD Ford Tahoe 2014",
normalPrice = 102000
},
{
model = "legacycharg",
label = "Dodge Charger Interceptor 2014",
normalPrice = 136000
},
{
model = "legacycharg2",
label = "Dodge Charger Interceptor 2016",
normalPrice = 145000
},
}
}
}