-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathInfo.lua
99 lines (99 loc) · 2.86 KB
/
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
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
g_PluginInfo =
{
Name = "HomeSetter Plugin",
Date = "2022-07-17",
Description = "This plugin provides the ability to manage your homes",
AdditionalInfo =
{
{
Title = "Lightweight & Fast",
Contents = "The entire plugin fits on ~10KiB of disk space & has no unnecessary functionality.",
},
{
Title = "Set your homes",
Contents = "With this plugin, you can set home points and adjust the maximum number of them through permissions. You can teleport to homes through all dismensions!",
},
{
Title = "Check your homes list",
Contents = "Use /homes to see existing homes and their amount",
},
},
Commands =
{
["/home"] =
{
HelpString = "Teleports you to a home",
Permission = "homesetter.home",
Handler = TpHome,
ParameterCombinations =
{
{
Params = "[home]",
Help = "Name of the home to teleport to",
}
},
},
["/sethome"] =
{
HelpString = "Set a home",
Permission = "homesetter.sethome",
Handler = SetHome,
ParameterCombinations =
{
{
Params = "[home]",
Help = "Name of the home that should be set",
}
},
},
["/delhome"] =
{
HelpString = "Delete home",
Permission = "homesetter.delhome",
Handler = DelHome,
ParameterCombinations =
{
{
Params = "[home]",
Help = "Name of the home that should be deleted",
}
},
},
["/homes"] =
{
HelpString = "List of homes",
Permission = "homesetter.homes",
Handler = ViewHomes,
},
},
ConsoleCommands = {},
Permissions =
{
["homesetter.home"] =
{
Description = "Allows the players to teleport to their homes.",
RecommendedGroups = "Default",
},
["homesetter.sethome"] =
{
Description = "Allows the players to set their homes.",
RecommendedGroups = "Default",
},
["homesetter.delhome"] =
{
Description = "Allows the players to delete their homes.",
RecommendedGroups = "Default",
},
["homesetter.homes"] =
{
Description = "Allows the players to view a list of their homes.",
RecommendedGroups = "Default",
},
["homesetter.maxhomes.3"] =
{
Description = "Maximum number of homes to be set",
RecommendedGroups = "Default",
},
},
Categories = {},
}