-
Notifications
You must be signed in to change notification settings - Fork 15
/
config.lua
executable file
ยท136 lines (136 loc) ยท 3.7 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
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
Config = {
debug = false, -- Enable or disable the DEBUG mode.
showPlayer = true, -- Display the player self position?
showPlayers = true, -- Display other players position?
updateInterval = 100, -- The interval time of the map refresh.
-- Hotkey setting
hotKeySettings = {
fivem = "F1", -- The default key to open the map
html = 112, -- JavaScript KeyCode, 112 = F1
},
-- Player self position label setting
playerPosition = {
text = "My Location",
font = "Arial",
fontSize = 80
},
-- GPS waypoint label setting
playerWaypoint = {
text = "๐ฉ Waypoint",
font = "Arial",
fontSize = 80
},
-- The other player label setting
multPlayerMark = {
font = "Arial",
fontSize = 80
},
-- Labels
marks = {
-- The full-config label example
{
name = "lobby", -- The label name, only use in the internal, not display name.
text = "โญ Game Lobby", -- The text should be display on the label, support emoji
x = -272.18, -- World position X
y = -955.78, -- World position Y
z = 165.0, -- World position Z
font = "Arial", -- Label font name
fontSize = 80, -- Label font size, unit is "px"
width = nil, -- Label width, unit is "px", leave this as nil to calculate the width automatically.
height = nil, -- Label height, unit is "px", leave this as nil to calculate the height automatically.
color = nil, -- Label text color, support the css format like #FFFFFF, rgb(255,0,0) or rgba(255,255,255,0.6).
background = nil -- Label background color, support the css format too.
},
-- You can add more labels.
{
name = "maze_bank",
text = "๐ข Maze Bank",
x = -75.24,
y = -818.5,
z = 346.18,
font = "Arial",
fontSize = 80,
},
{
name = "central_park",
text = "๐ Central Park",
x = 176.86,
y = -965.15,
z = 59.24,
font = "Arial",
fontSize = 80,
},
{
name = "car_shop",
text = "๐ Car Shop",
x = -51.01,
y = -1113.63,
z = 56.02,
font = "Arial",
fontSize = 80,
},
{
name = "cinema",
text = "๐ฝ Cinema",
x = 302.57,
y = 205.34,
z = 161.59,
font = "Arial",
fontSize = 80,
},
{
name = "drift_road",
text = "๐ Drift Road",
x = 808.82,
y = 1275.43,
z = 390.08,
font = "Arial",
fontSize = 80,
},
{
name = "jail",
text = "โ Jail",
x = 1692.45,
y = 2593.25,
z = 100.21,
font = "Arial",
fontSize = 80,
},
{
name = "mountain",
text = "โฐ Mount Chiliad",
x = 491.0,
y = 5578.2,
z = 845.2,
font = "Arial",
fontSize = 80,
},
{
name = "hemp",
text = "๐ฟ Hemp",
x = 2443.54,
y = 4973.32,
z = 85.15,
font = "Arial",
fontSize = 80,
},
{
name = "police_1",
text = "๐ฎ๐ปโโ๏ธ Police station",
x = 447.12,
y = -990.86,
z = 78.16,
font = "Arial",
fontSize = 80,
},
{
name = "airport",
text = "โ Airport",
x = -1228.1,
y = -2945.5,
z = 80.49,
font = "Arial",
fontSize = 80,
}
}
}