forked from CptNoHand/qb-map
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
19 lines (19 loc) · 813 Bytes
/
config.lua
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
Config = {}
Config.Blips = {
[1] = {
label = 'Cityhall', -- Name on the map
sprite = 438, -- sprite list (https://docs.fivem.net/docs/game-references/blips/)
color = 49, -- color list (https://docs.fivem.net/docs/game-references/blips/)
location = vector3(-264.98, -963.56, 31.22), -- location
scale = 0.8, -- Blipsize
ShortRange = false -- ShortRange true/false
},
[2] = {
label = 'Cardealer',
sprite = 326,
color = 49,
location = vector3(-45.68, -1098.34, 26.42),
scale = 0.8,
ShortRange = false
},
}