-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.lua
More file actions
53 lines (40 loc) · 1.26 KB
/
Info.lua
File metadata and controls
53 lines (40 loc) · 1.26 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
-- Info.lua
-- Implements the g_PluginInfo standard plugin description
g_PluginInfo =
{
Name = "Commands",
Version = "1",
Date = "2014-09-20",
SourceLocation = "",
Description = "[[Set of commands]]",
Commands =
{
["/throw"] =
{
Permission = "bc.throw",
Handler = HandleThrowCommand,
HelpString = " ~ Shoot a projectile"
},
["/lightning"] =
{
Alias = "/thunderbolt",
Permission = "bc.lighting",
Handler = HandleLightningCommand,
HelpString = " ~ Create lightnings",
},
["/speed"] =
{
Alias = "/celerity",
Permission = "bc.speed",
Handler = HandleSpeedCommand,
HelpString = " ~ Change the speed of a player",
},
["/kick-all"] =
{
Alias = "/kickall",
Permission = "bc.kickall",
Handler = HandleKickAllCommand,
HelpString = " ~ Kick all the players",
},
}
}