-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
90 lines (78 loc) · 3.13 KB
/
config.lua
File metadata and controls
90 lines (78 loc) · 3.13 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
BM = {}
BM.Debug = false -- Enable/Disable debug logging
BM.ActivateSingle = true -- Enable/Disable BlipsSingle
BM.ActivateRadius = true -- Enable/Disable BlipsRadius
--============================--
-- SINGLE BLIPS
--============================--
BM.BlipsSingle = { -- Find blip sprites and colours here: https://docs.fivem.net/docs/game-references/blips/
---------- EXAMPLE ----------------------------------------------------------------------------------------------------
-- {
-- name = "Example Blip",
-- coords = vec3(0.0, 0.0, 0.0),
-- sprite = 0,
-- color = 0,
-- scale = 1.0,
-- shortRange = true,
-- info = {
-- title = "Example Title",
-- verified = true,
-- rp = "+400",
-- money = "$1500",
-- image = {
-- dict = "mpinventory",
-- tex = "mp_specitem_ped"
-- },
-- entries = {
-- { type = "header", left = "Left Header", right = "Right Header" },
-- { type = "text", left = "Left Text", right = "Right Text" },
-- { type = "name", left = "Left Name", right = "Right Name" },
-- { type = "icon", left = "Left Icon", right = "Right Icon", icon = 0, color = 1, checked = true },
-- }
-- }
-- },
------------------------------------------------------------------------------------------------------------------------
{
name = "Vinewood Sign (Example Blip)",
coords = vec3(711.38, 1198.0, 348.52),
sprite = 80,
color = 0,
scale = 1.0,
shortRange = true,
info = {
title = "Vinewood Sign",
verified = true,
rp = "+400",
money = "$1500",
image = {
dict = "mpinventory",
tex = "mp_specitem_ped"
},
entries = {
{ type = "header", left = "Left Header", right = "Right Header" },
{ type = "text", left = "Left Text", right = "Right Text" },
{ type = "name", left = "Left Name", right = "Right Name" },
{ type = "icon", left = "Left Icon", right = "Right Icon", icon = 0, color = 1, checked = true },
}
}
},
}
--============================--
-- RADIUS BLIPS
--============================--
BM.BlipsRadius = { -- Find blip sprites and colours here: https://docs.fivem.net/docs/game-references/blips/
---------- EXAMPLE ----------------------------------------------------
-- {
-- coords = vec3(0.0, 0.0, 0.0), -- Radius Location
-- radius = 200.0, -- Radius Size
-- color = 0, -- Radius Colour
-- transparency = 128 -- Radius Transparency
-- }
-----------------------------------------------------------------------
{ -- Vinewood Sign
coords = vec3(711.38, 1198.0, 348.52),
radius = 200.0,
color = 0,
transparency = 128
}
}