forked from murayuki/JD_playerID
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.lua
54 lines (47 loc) · 1.16 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
Config = {}
Config.DisplayStaffTag = {
['Owner | '] = { ['perm'] = 'jd.owner', ['color'] = 6 },
['Admin | '] = { ['perm'] = 'jd.admin', ['color'] = 5 },
['Mod | '] = { ['perm'] = 'jd.mod', ['color'] = 6 }
}
Config.TagRange = 25
Config.DriverIcon = true
Config.Messages = {
['ChatPrefix'] = "[JD_PlayerID]",
['NoPerms'] = "You're ^*^1Not^0^r allowed to use this command!",
['StaffTag'] = {"Staff tag ^*^1%s^0", "Enabled", "Disabled"},
['TagDistance'] = "Player tag distance set to: ^*^2%s^0",
['SeeTags'] = {"Player tags trough walls ^*^2%s^0", "Enabled", "Disabled"},
['ToggleTags'] = {"Player tags ^*^2%s^0", "Enabled", "Disabled"}
}
Config.Colors = {
['DefaultTag'] = 0 --[[ Colors for tags are added in 'Config.DisplayStaffTag'. ]]
}
--[[
Here are some color numbers:
0 // PURE_WHITE
1 // WHITE
2 // BLACK
3 // GREY
4 // LIGHT GREY
5 // DARK GREY
6 // RED
7 // LIGHT RED
8 // DARK RED
9 // BLUE
10 // LIGHT BLUE
11 // DARK BLUE
12 // YELLOW
13 // LIGHT YELLOW
14 // DARK YELLOW
15 // ORANGE
16 // LIGHT ORANGE
17 // DARK ORANGE
18 // GREEN
19 // LIGHT GREEN
20 // DARK GREEN
21 // PURPLE
22 // LIGHT PURPLE
23 // DARK PURPLE
24 // PINK
]]