-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfo.lua
55 lines (46 loc) · 1014 Bytes
/
Info.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
-- Info.lua
-- Implements the g_PluginInfo standard plugin description
g_PluginInfo =
{
Name = "CoreAntiCheat",
Version = "1",
Date = "2014-06-11",
SourceLocation = "https://github.com/KrystilizeNevaDies/CoreAntiCheat",
Description = [[Implements basic Anti-Cheat that is useful in running a small server]],
Commands =
{
["/anticheat"] =
{
Permission = "coreanticheat.cmd",
Handler = CoreAntiCheatCommand,
HelpString = "Universal Anticheat Command",
ParameterCombinations =
{
{
Params = "test",
Help = "Test Command",
},
{
Params = "config",
Help = "Lists the config",
},
}
}
}, -- Commands
ConsoleCommands =
{
["anticheat"] =
{
Handler = CoreAntiCheatConsoleCommand,
HelpString = "Universal Anticheat Command",
},
}, -- ConsoleCommands
Permissions =
{
["coreanticheat.cmd"] =
{
Description = "Allows use of anticheat command",
RecommendedGroups = "admins",
},
}, -- Permissions
} -- g_PluginInfo