diff options
author | md_5 <md_5@bigpond.com> | 2012-03-17 20:13:38 +1100 |
---|---|---|
committer | md_5 <md_5@bigpond.com> | 2012-03-17 20:13:38 +1100 |
commit | 1d08e1ccda44ef614379b54dc294d55a41390cdc (patch) | |
tree | ea0d50c9c3ad50972e4564c18505178646e6fdc8 /EssentialsAntiCheat | |
parent | 9ea91790e112ff7d5ec6224c1d9b3079fdc8d153 (diff) | |
download | Essentials-1d08e1ccda44ef614379b54dc294d55a41390cdc.tar Essentials-1d08e1ccda44ef614379b54dc294d55a41390cdc.tar.gz Essentials-1d08e1ccda44ef614379b54dc294d55a41390cdc.tar.lz Essentials-1d08e1ccda44ef614379b54dc294d55a41390cdc.tar.xz Essentials-1d08e1ccda44ef614379b54dc294d55a41390cdc.zip |
Last ditch attempt at making work properly
Diffstat (limited to 'EssentialsAntiCheat')
-rw-r--r-- | EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/NoCheat.java | 10 | ||||
-rw-r--r-- | EssentialsAntiCheat/src/plugin.yml | 26 |
2 files changed, 18 insertions, 18 deletions
diff --git a/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/NoCheat.java b/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/NoCheat.java index 666a04332..de036ec09 100644 --- a/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/NoCheat.java +++ b/EssentialsAntiCheat/src/com/earth2me/essentials/anticheat/NoCheat.java @@ -205,23 +205,23 @@ public class NoCheat extends JavaPlugin implements Listener String message = ""; if (!p.hasPermission(Permissions.ZOMBES_FLY)) { - message += "§f §f §1 §0 §2 §4"; // Zombes fly + message += "§f §f §1 §0 §2 §4 "; // Zombes fly } if (!p.hasPermission(Permissions.ZOMBES_CHEAT)) { - message += "§f §f §2 §0 §4 §8"; // Zombes cheat + message += "§f §f §2 §0 §4 §8 "; // Zombes cheat } if (!p.hasPermission(Permissions.CJB_FLY)) { - message += "§3 §9 §2 §0 §0 §1"; // CJB fly + message += "§3 §9 §2 §0 §0 §1 "; // CJB fly } if (!p.hasPermission(Permissions.CJB_XRAY)) { - message += "§3 §9 §2 §0 §0 §2"; // CJB xray + message += "§3 §9 §2 §0 §0 §2 "; // CJB xray } if (!p.hasPermission(Permissions.CJB_MINIMAP)) { - message += "§3 §9 §2 §0 §0 §3"; // CJB minimap players + message += "§3 §9 §2 §0 §0 §3 "; // CJB minimap players } p.sendMessage(message); } diff --git a/EssentialsAntiCheat/src/plugin.yml b/EssentialsAntiCheat/src/plugin.yml index 7325b8f82..0d0ad4d92 100644 --- a/EssentialsAntiCheat/src/plugin.yml +++ b/EssentialsAntiCheat/src/plugin.yml @@ -15,19 +15,6 @@ commands: /<command> reload: fast reload of NoCheats configuration file(s) - needs additional permissions permissions: - nocheat.mod.all: - description: Various simple cheat mods which they player may or may not be allowed to use - children: - nocheat.mod.zombes.fly: - description: Allow the use of the Zombes fly hack - nocheat.mod.zombes.cheat: - description: Allow the use of the Zombes cheat hack, includes xray - nocheat.mod.cjb.fly: - description: Allow the use of CJB's fly hack - nocheat.mod.cjb.xray: - description: Allow the use of CJB's xray - nocheat.mod.cjb.minimap: - description: Allow the use of CJB's minimap nocheat: description: Allow a player to bypass all checks and give him all admin permissions children: @@ -40,6 +27,19 @@ permissions: description: allow use of the "nocheat" commands (may be given to players to allow them to check statistics) nocheat.admin.reload: description: allow access to the special "nocheat reload" command (only intended for the actual server administrator) + nocheat.mod.all: + description: Various simple cheat mods which they player may or may not be allowed to use + children: + nocheat.mod.zombes.fly: + description: Allow the use of the Zombes fly hack + nocheat.mod.zombes.cheat: + description: Allow the use of the Zombes cheat hack, includes xray + nocheat.mod.cjb.fly: + description: Allow the use of CJB's fly hack + nocheat.mod.cjb.xray: + description: Allow the use of CJB's xray + nocheat.mod.cjb.minimap: + description: Allow the use of CJB's minimap nocheat.checks: description: Allow the player to bypass all checks children: |