-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
80 lines (66 loc) · 2.49 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
-- 𝓞𝓶𝓲-𝓛𝓲𝓰𝓱𝓽𝓹𝓸𝓵𝓮𝓼
Config = {
---- Big Two Sided Light Pole Light Pole
Objects = {
[1] = { -- Example 1
Coords = vector4(-2524.37, 3080.62, 32.81, 148.92) -- Vector 4 Coords for the props location
},
[2] = { -- Example 2
Coords = vector4(-2521.8, 3079.39, 32.81, 153.64) -- Vector 4 Coords for the props location
},
},
---- Small Light Pole (Diamond Top)
Objects2 = {
[1] = { -- Example 1
Coords = vector4(-2508.15, 3071.41, 32.81, 169.51) -- Vector 4 Coords for the props location
},
[2] = { -- Example 2
Coords = vector4(-2506.56, 3070.44, 32.81, 146.04) -- Vector 4 Coords for the props location
},
},
---- Big Yellow Street Light Pole
Objects3 = {
[1] = { -- Example 1
Coords = vector4(-2494.77, 3063.69, 32.81, 183.88) -- Vector 4 Coords for the props location
},
[2] = { -- Example 2
Coords = vector4(-2492.76, 3062.41, 32.81, 158.88) -- Vector 4 Coords for the props location
},
},
---- Small White Street Light Pole (Square Top)
Objects4 = {
[1] = { -- Example 1
Coords = vector4(-2481.46, 3055.88, 32.81, 151.29) -- Vector 4 Coords for the props location
},
[2] = { -- Example 2
Coords = vector4(-2478.75, 3054.19, 32.81, 149.13) -- Vector 4 Coords for the props location
},
},
---- Small White Street Light Pole (Circletop)
Objects5 = {
[1] = { -- Example 1
Coords = vector4(-2428.53, 3030.86, 32.82, 234.64) -- Vector 4 Coords for the props location
},
[2] = { -- Example 2
Coords = vector4(-2464.85, 3046.34, 32.81, 152.51) -- Vector 4 Coords for the props location
},
},
---- Big White Street Light Pole
Objects6 = {
[1] = { -- Example 1
Coords = vector4(-2431.98, 3033.17, 32.83, 238.88) -- Vector 4 Coords for the props location
},
[2] = { -- Example 2
Coords = vector4(-2452.76, 3039.18, 32.81, 154.17) -- Vector 4 Coords for the props location
},
},
----Double Sided White Street Lamp
Objects7 = {
[1] = { -- Example 1
Coords = vector4(-2434.83, 3034.99, 32.81, 230.73) -- Vector 4 Coords for the props location
},
[2] = { -- Example 2
Coords = vector4(-2443.31, 3033.81, 32.81, 156.39) -- Vector 4 Coords for the props location
},
}
}