summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-11 11:59:51 +0200
committermadmaxoft@gmail.com <madmaxoft@gmail.com@0a769ca7-a7f5-676a-18bf-c427514a06d6>2013-06-11 11:59:51 +0200
commit9a6694f56c680b0eec374f590088fbae2daac824 (patch)
tree7a663af77c6c62b383440ee6dccfdc94fe27a08d
parentProtectionAreas: Moved all strings sent to players to a separate language file (diff)
downloadcuberite-9a6694f56c680b0eec374f590088fbae2daac824.tar
cuberite-9a6694f56c680b0eec374f590088fbae2daac824.tar.gz
cuberite-9a6694f56c680b0eec374f590088fbae2daac824.tar.bz2
cuberite-9a6694f56c680b0eec374f590088fbae2daac824.tar.lz
cuberite-9a6694f56c680b0eec374f590088fbae2daac824.tar.xz
cuberite-9a6694f56c680b0eec374f590088fbae2daac824.tar.zst
cuberite-9a6694f56c680b0eec374f590088fbae2daac824.zip
-rw-r--r--MCServer/Plugins/ProtectionAreas/CurrentLng.lua18
1 files changed, 9 insertions, 9 deletions
diff --git a/MCServer/Plugins/ProtectionAreas/CurrentLng.lua b/MCServer/Plugins/ProtectionAreas/CurrentLng.lua
index f4cd4735e..b0ad3863c 100644
--- a/MCServer/Plugins/ProtectionAreas/CurrentLng.lua
+++ b/MCServer/Plugins/ProtectionAreas/CurrentLng.lua
@@ -13,15 +13,15 @@
function CommandReg()
return {
-- Handler function | Command | Permission | Help text
- {HandleAddArea, "/ProtAdd", "Prot.Add", "Adds a new protected area"},
- {HandleAddAreaCoords, "/ProtAddCoords", "Prot.Add", "Adds a new protected area by coords"},
- {HandleAddAreaUser, "/ProtAddUser", "Prot.AddUser", "Adds a new user to an existing protected area"},
- {HandleDelArea, "/ProtDelID", "Prot.Del", "Deletes a protected area by ID"},
- {HandleGiveWand, "/ProtWand", "Prot.Wand", "Gives you the wand used for protection"},
- {HandleListAreas, "/ProtList", "Prot.List", "Lists all areas for the marked block"},
- {HandleListUsers, "/ProtUsers", "Prot.List", "Lists all allowed users for a given area ID"},
- {HandleRemoveUser, "/ProtRemUser", "Prot.RemUser", "Removes a user from the protected area"},
- {HandleRemoveUserAll, "/ProtRemUserAll", "Prot.RemUser", "Removes a user from all protected areas"},
+ {HandleAddArea, "/ProtAdd", "Prot.Add", "<UserNames> - Adds a new protected area"},
+ {HandleAddAreaCoords, "/ProtAddCoords", "Prot.Add", "<x1> <z1> <x2> <z2> <UserNames> - Adds a new protected area by coords"},
+ {HandleAddAreaUser, "/ProtAddUser", "Prot.AddUser", "<AreaID> <UserNames> - Adds new users to an existing protected area"},
+ {HandleDelArea, "/ProtDelID", "Prot.Del", "<AreaID> - Deletes a protected area by ID"},
+ {HandleGiveWand, "/ProtWand", "Prot.Wand", " - Gives you the wand used for protection"},
+ {HandleListAreas, "/ProtList", "Prot.List", "[<x> <z>] - Lists all areas for the marked block or given coords"},
+ {HandleListUsers, "/ProtUsers", "Prot.List", "<AreaID> - Lists all allowed users for a given area ID"},
+ {HandleRemoveUser, "/ProtRemUser", "Prot.RemUser", "<AreaID> <UserName> - Removes a user from the protected area"},
+ {HandleRemoveUserAll, "/ProtRemUserAll", "Prot.RemUser", "<UserName> - Removes a user from all protected areas"},
};
end;