-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.lua
48 lines (40 loc) · 936 Bytes
/
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
Config = {}
-- Discord Webhook URL (IF YOU DON'T KNOW HOW, WATCH THIS VIDEO: https://www.youtube.com/watch?v=fKksxz2Gdnc)
Config.DiscordWebhook = ""
Config.MinCharacterToSendReport = 10
Config.AdminRoles = {
["admin"] = true,
["mod"] = true,
}
-- You can disable the commands
Config.EnableCommands = {
["Report"] = true,
["Reply"] = true,
["ToggleReports"] = true,
["CloseReport"] = true,
["PM"] = true,
["TogglePM"] = true,
}
-- Commands name
Config.Commands = {
["Report"] = "report",
["Reply"] = "r",
["ToggleReports"] = "togreports",
["CloseReport"] = "cr",
["PM"] = "pm",
["TogglePM"] = "togpm",
}
-- Reply settings
Config.OnlyReportReply = true
-- PM settings
Config.NotifyPlayerOnPM = true
Config.LogPM = true
-- Blacklisted words (You can add more...)
Config.BlacklistedWords = {
"szar a szerver",
"köcsög adminok",
}
Config.ActionIfBlacklisted = {
["KickPlayer"] = false,
["NotifyPlayer"] = true,
}