-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
107 lines (103 loc) · 4.67 KB
/
config.lua
File metadata and controls
107 lines (103 loc) · 4.67 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
101
102
103
104
105
106
Config = {}
Config.Target = "qb" -- Options: "qb" for qb-target, "ox" for ox_target
Config.BusFare = 150
Config.BusStops = {
{
name = "Legion Square",
coords = vector3(304.31, -764.63, 29.31),
heading = 253.2,
waitTime = 30,
destinations = {
{label = "Alta Street", coords = vector3(-250.13, -887.08, 30.62)},
{label = "Jamestown Street", coords = vector3(438.35, -2032.28, 23.55)},
{label = "Beachside", coords = vector3(-1171.09, -1473.52, 4.38)},
{label = "City Hall", coords = vector3(-526.59, -264.87, 35.44)},
{label = "Popular Street", coords = vector3(785.33, -1369.07, 26.6)},
{label = "Paleto Bay", coords = vector3(-218.85, 6174.92, 31.26)},
}
},
{
name = "Alta Street",
coords = vector3(-250.13, -887.08, 30.62),
heading = 334.22,
waitTime = 30,
destinations = {
{label = "Legion Square", coords = vector3(304.31, -764.63, 29.31)},
{label = "Jamestown Street", coords = vector3(438.35, -2032.28, 23.55)},
{label = "Beachside", coords = vector3(-1171.09, -1473.52, 4.38)},
{label = "City Hall", coords = vector3(-526.59, -264.87, 35.44)},
{label = "Popular Street", coords = vector3(785.33, -1369.07, 26.6)},
{label = "Paleto Bay", coords = vector3(-218.85, 6174.92, 31.26)},
}
},
{
name = "Jamestown Street",
coords = vector3(438.35, -2032.28, 23.55),
heading = 309.45,
waitTime = 30,
destinations = {
{label = "Legion Square", coords = vector3(304.31, -764.63, 29.31)},
{label = "Alta Street", coords = vector3(-250.13, -887.08, 30.62)},
{label = "Beachside", coords = vector3(-1171.09, -1473.52, 4.38)},
{label = "City Hall", coords = vector3(-526.59, -264.87, 35.44)},
{label = "Popular Street", coords = vector3(785.33, -1369.07, 26.6)},
{label = "Paleto Bay", coords = vector3(-218.85, 6174.92, 31.26)},
}
},
{
name = "Beachside",
coords = vector3(-1171.09, -1473.52, 4.38),
heading = 307.3,
waitTime = 30,
destinations = {
{label = "Legion Square", coords = vector3(304.31, -764.63, 29.31)},
{label = "Alta Street", coords = vector3(-250.13, -887.08, 30.62)},
{label = "Jamestown Street", coords = vector3(438.35, -2032.28, 23.55)},
{label = "City Hall", coords = vector3(-526.59, -264.87, 35.44)},
{label = "Popular Street", coords = vector3(785.33, -1369.07, 26.6)},
{label = "Paleto Bay", coords = vector3(-218.85, 6174.92, 31.26)},
}
},
{
name = "City Hall",
coords = vector3(-526.59, -264.87, 35.44),
heading = 24.04,
waitTime = 30,
destinations = {
{label = "Legion Square", coords = vector3(304.31, -764.63, 29.31)},
{label = "Alta Street", coords = vector3(-250.13, -887.08, 30.62)},
{label = "Jamestown Street", coords = vector3(438.35, -2032.28, 23.55)},
{label = "Beachside", coords = vector3(-1171.09, -1473.52, 4.38)},
{label = "Popular Street", coords = vector3(785.33, -1369.07, 26.6)},
{label = "Paleto Bay", coords = vector3(-218.85, 6174.92, 31.26)},
}
},
{
name = "Popular Street",
coords = vector3(785.33, -1369.07, 26.6),
heading = 271.49,
waitTime = 30,
destinations = {
{label = "Legion Square", coords = vector3(304.31, -764.63, 29.31)},
{label = "Alta Street", coords = vector3(-250.13, -887.08, 30.62)},
{label = "Jamestown Street", coords = vector3(438.35, -2032.28, 23.55)},
{label = "Beachside", coords = vector3(-1171.09, -1473.52, 4.38)},
{label = "Popular Street", coords = vector3(785.33, -1369.07, 26.6)},
{label = "Paleto Bay", coords = vector3(-218.85, 6174.92, 31.26)},
}
},
{
name = "Paleto Bay",
coords = vector3(-218.85, 6174.92, 31.26),
heading = 45.03,
waitTime = 30,
destinations = {
{label = "Legion Square", coords = vector3(304.31, -764.63, 29.31)},
{label = "Alta Street", coords = vector3(-250.13, -887.08, 30.62)},
{label = "Jamestown Street", coords = vector3(438.35, -2032.28, 23.55)},
{label = "Beachside", coords = vector3(-1171.09, -1473.52, 4.38)},
{label = "City Hall", coords = vector3(-526.59, -264.87, 35.44)},
{label = "Popular Street", coords = vector3(785.33, -1369.07, 26.6)},
}
},
}