-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathInfo.lua
More file actions
114 lines (112 loc) · 2.72 KB
/
Info.lua
File metadata and controls
114 lines (112 loc) · 2.72 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
-- info.lua
-- Implements the g_PluginInfo standard plugin description.
g_PluginInfo =
{
Name = "Extras",
Version = "1",
Date = "2022-05-19",
SourceLocation = "https://github.com/aedifi/extras",
Description = [[Fun commands and extra features.]],
Commands =
{
["/delhome"] =
{
Alias = {"/dhome", "/deletehome"},
Permission = "extras.visitor.delhome",
Handler = HandleDelHomeCommand,
HelpString = "Deletes a home or your main home.",
},
["/disguise"] =
{
Alias = "/dis",
Permission = "extras.architect.disguise",
Handler = HandleDisguiseCommand,
HelpString = "Turns you into an entity.",
},
["/gohome"] =
{
Alias = "/home",
Permission = "extras.visitor.gohome",
Handler = HandleGoHomeCommand,
HelpString = "Takes you to a personal home.",
},
["/gowarp"] =
{
Alias = "/warp",
Permission = "extras.visitor.gowarp",
Handler = HandleGoWarpCommand,
HelpString = "Takes you to an operable warp.",
},
["/hat"] =
{
Alias = "/head",
Permission = "extras.architect.hat",
Handler = HandleHatCommand,
HelpString = "Gives you a special hat.",
},
["/homes"] =
{
Permission = "extras.visitor.homes",
Handler = HandleListHomeCommand,
HelpString = "Lists personal homes.",
},
["/name"] =
{
Alias = {"/nick", "/nickname"},
Permission = "extras.architect.name",
Handler = HandleNameCommand,
HelpString = "Changes your name.",
},
["/particles"] =
{
Alias = "/effects",
Permission = "extras.visitor.particles",
Handler = HandleParticlesCommand,
HelpString = "Lists configured particles.",
},
["/reveal"] =
{
Alias = {"/undis", "/undisguise"},
Permission = "extras.architect.reveal",
Handler = HandleRevealCommand,
HelpString = "Reveals you of any disguise.",
},
["/scare"] =
{
Alias = "/jumpscare",
Permission = "extras.architect.scare",
Handler = HandleScareCommand,
HelpString = "Scares a player.",
},
["/sethome"] =
{
Permission = "extras.visitor.sethome",
Handler = HandleSetHomeCommand,
HelpString = "Sets a home at your coordinates.",
},
["/setwarp"] =
{
Permission = "extras.architect.setwarp",
Handler = HandleSetWarpCommand,
HelpString = "Sets a warp at your coordinates.",
},
["/speed"] =
{
Permission = "extras.architect.speed",
Handler = HandleSpeedCommand,
HelpString = "Sets your maximum speed.",
},
["/trail"] =
{
Permission = "extras.architect.trail",
Handler = HandleTrailCommand,
HelpString = "Sets a particle trail.",
},
["/warps"] =
{
Permission = "extras.visitor.warps",
Handler = HandleListWarpCommand,
HelpString = "Lists operable warps.",
},
}, -- Commands
} -- g_PluginInfo