-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathconfig.lua
More file actions
59 lines (56 loc) · 1.98 KB
/
config.lua
File metadata and controls
59 lines (56 loc) · 1.98 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
Config = {}
-------------------------------------------------------------------
-- FRAMEWORK SETTINGS
-------------------------------------------------------------------
Config.FrameWork = "esx" -- Options: "esx", "qbcore"
-------------------------------------------------------------------
-- UI SETTINGS
-------------------------------------------------------------------
Config.Colors = {
primary = "#00F8B8", -- used for texts, borders, etc.
background = "#1E7F7E", -- used for container backgrounds and gradients
}
-------------------------------------------------------------------
-- MARKER SETTINGS
-------------------------------------------------------------------
Config.Marker = {
DrawDistance = 12.0, -- Maximum distance (in units) the marker is drawn
InteractDistance = 2.0, -- Distance required to interact with the elevator
Type = 2, -- Marker type (2 is a common type, adjust as needed)
Scale = vector3(0.3, 0.3, 0.2), -- Marker scale dimensions
Color = { r = 255, g = 255, b = 255, a = 200 } -- RGBA color of the marker
}
-------------------------------------------------------------------
-- ELEVATOR DATA CONFIGURATION
-------------------------------------------------------------------
Config.Elevators = {
['fbi'] = {
{
coords = vector3(114.83, -742.10, 257.15),
heading = 341.01,
label = "Roof"
},
{
coords = vector3(136.14, -761.66, 241.15),
heading = 159.56,
label = "Offices"
},
{
coords = vector3(136.24, -761.75, 44.75),
heading = 154.56,
label = "Ground Floor"
}
},
['solomon_office'] = {
{
coords = vector3(-1011.05, -479.65, 38.97),
heading = 117.05,
label = "Entrance"
},
{
coords = vector3(-1002.75, -477.70, 49.03),
heading = 112.72,
label = "Office"
}
}
}