-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathconfig.lua
More file actions
60 lines (54 loc) · 1.2 KB
/
Copy pathconfig.lua
File metadata and controls
60 lines (54 loc) · 1.2 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
config = {}
config.cars = {
[1] = {
["car_name"] = "Asea",
["car_price"] = 150,
},
[2] = {
["car_name"] = "Asbo",
["car_price"] = 300,
},
[3] = {
["car_name"] = "Buffalo",
["car_price"] = 800,
},
[4] = {
["car_name"] = "Pfister811",
["car_price"] = 1500,
},
[5] = {
["car_name"] = "Baller4",
["car_price"] = 7000,
},
[6] = {
["car_name"] = "T20",
["car_price"] = 10000,
},
[7] = {
["car_name"] = "Blazer",
["car_price"] = 1000,
},
[8] = {
["car_name"] = "Bf400",
["car_price"] = 1200,
},
[9] = {
["car_name"] = "Everon",
["car_price"] = 5000,
},
}
config.PedList = {
{
model = "s_m_m_movprem_01",
coords = vector3(-1026.63, -2729.91, 12.76),
heading = 333.5,
gender = "male",
scenario = "WORLD_HUMAN_CLIPBOARD"
},
}
config.CarSpawnLocation = {
airport = vector4(-1024.2, -2727.63, 13.72, 239.34),
}
config.PlayerReturnLocation = {
airport = vector4(-1026.42, -2727.48, 13.67, 239.13),
}