-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
53 lines (48 loc) · 1.18 KB
/
config.lua
File metadata and controls
53 lines (48 loc) · 1.18 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
Config = {}
Config.GLOBAL = {
locale = 'en',
displayTime = 6,
textScale = 0.5,
textColor = { 255, 230, 100 }, -- fallback color (RGB)
radius = 20.0,
baseHeight = 1.2,
serverLogging = true,
textShadow = {
enabled = true,
distance = 2,
color = { 0, 0, 0, 255 },
},
textOutline = false,
spam = {
cooldownMs = 1000,
burstLimit = 3,
burstWindowMs = 10000,
spamPrefix = nil,
spamMessage = nil,
allowAdminBypass = true,
adminAcePermission = 'actiontext.bypass',
notify = false,
},
}
Config.ME = {
color = { 100, 230, 255 },
chat = false,
chatColor = { 100, 230, 255 },
chatPrefix = '[ME]: ',
useChatPrefix = true,
chatPrefixFormat = '^*%s^*^7 ',
chatFormat = '%s - ^*%s^*',
overheadFormat = '* %s *',
suggestion = nil
}
Config.DO = {
color = { 255, 230, 120 },
chat = true,
chatColor = { 255, 200, 80 },
chatPrefix = '[DO]: ',
useChatPrefix = true,
chatPrefixFormat = '^*%s^*^7 ',
chatFormat = '%s - ^*%s^*',
overheadFormat = '* %s',
suggestion = nil
}