summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorsnowleo <schneeleo@gmail.com>2011-07-16 02:38:46 +0200
committersnowleo <schneeleo@gmail.com>2011-07-16 02:38:46 +0200
commitdb27a8c6277bb5fd3ae5b9a07c9ef0dbc41989bb (patch)
tree8e36ab57f0d57d7fd503cbd40bcfc12d27e4e2e7
parent78c376af79f1550941166bcfa43a8d3625111693 (diff)
parentb749cd4e42b029c34b077b5c2c997b746b994481 (diff)
downloadEssentials-db27a8c6277bb5fd3ae5b9a07c9ef0dbc41989bb.tar
Essentials-db27a8c6277bb5fd3ae5b9a07c9ef0dbc41989bb.tar.gz
Essentials-db27a8c6277bb5fd3ae5b9a07c9ef0dbc41989bb.tar.lz
Essentials-db27a8c6277bb5fd3ae5b9a07c9ef0dbc41989bb.tar.xz
Essentials-db27a8c6277bb5fd3ae5b9a07c9ef0dbc41989bb.zip
Merge branch 'master' of https://github.com/essentials/Essentials
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandhelp.java17
-rw-r--r--Essentials/src/com/earth2me/essentials/commands/Commandtempban.java8
-rw-r--r--Essentials/src/messages.properties1
-rw-r--r--Essentials/src/messages_da.properties1
-rw-r--r--Essentials/src/messages_de.properties1
-rw-r--r--Essentials/src/messages_en.properties2
-rw-r--r--Essentials/src/messages_fr.properties1
-rw-r--r--Essentials/src/messages_nl.properties1
-rw-r--r--Essentials/src/plugin.yml8
9 files changed, 30 insertions, 10 deletions
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java b/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java
index 10e8f31ab..c105e2e41 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandhelp.java
@@ -54,13 +54,20 @@ public class Commandhelp extends EssentialsCommand
}
List<String> lines = getHelpLines(user, match);
- int start = (page - 1) * 9;
- int pages = lines.size() / 9 + (lines.size() % 9 > 0 ? 1 : 0);
+ if (lines.size() > 0)
+ {
+ int start = (page - 1) * 9;
+ int pages = lines.size() / 9 + (lines.size() % 9 > 0 ? 1 : 0);
- user.sendMessage(Util.format("helpPages", page, pages));
- for (int i = start; i < lines.size() && i < start + 9; i++)
+ user.sendMessage(Util.format("helpPages", page, pages));
+ for (int i = start; i < lines.size() && i < start + 9; i++)
+ {
+ user.sendMessage(lines.get(i));
+ }
+ }
+ else
{
- user.sendMessage(lines.get(i));
+ user.sendMessage(Util.i18n("noHelpFound"));
}
}
diff --git a/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java b/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
index ffa63597d..f1d91d2ac 100644
--- a/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
+++ b/Essentials/src/com/earth2me/essentials/commands/Commandtempban.java
@@ -20,12 +20,16 @@ public class Commandtempban extends EssentialsCommand
{
throw new NotEnoughArgumentsException();
}
-
final User player = getPlayer(server, args, 0, true);
+ if (player.isAuthorized("essentials.tempban.exempt"))
+ {
+ sender.sendMessage(Util.i18n("tempbanExempt"));
+ return;
+ }
final String time = getFinalArg(args, 1);
final long banTimestamp = Util.parseDateDiff(time, true);
- final String banReason = Util.format("tempBanned", Util.formatDateDiff(banTimestamp));
+ final String banReason = (args.length == 3 && !args[2].isEmpty()) ? args[2].toString() + " - " + Util.formatDateDiff(banTimestamp) : Util.format("tempBanned", Util.formatDateDiff(banTimestamp));
player.setBanReason(banReason);
player.setBanTimeout(banTimestamp);
player.kickPlayer(banReason);
diff --git a/Essentials/src/messages.properties b/Essentials/src/messages.properties
index a968d4153..cd7607c24 100644
--- a/Essentials/src/messages.properties
+++ b/Essentials/src/messages.properties
@@ -256,6 +256,7 @@ teleportationEnabled = \u00a77Teleportation enabled.
teleporting = \u00a77Teleporting...
teleportingPortal = \u00a77Teleporting via portal.
tempBanned = Temporarily banned from server for {0}
+tempbanExempt = \u00a77You may not tempban that player
thunder = You {0} thunder in your world
thunderDuration = You {0} thunder in your world for {1} seconds.
timeBeforeHeal = Time before next heal: {0}
diff --git a/Essentials/src/messages_da.properties b/Essentials/src/messages_da.properties
index e471b7dd0..bd0352289 100644
--- a/Essentials/src/messages_da.properties
+++ b/Essentials/src/messages_da.properties
@@ -258,6 +258,7 @@ teleportationEnabled = \u00a77Teleportering aktiveret.
teleporting = \u00a77Teleportere...
teleportingPortal = \u00a77Teleporterede via portal.
tempBanned = Midlertidigt bannet fra serveren for {0}
+tempbanExempt = \u00a77You may not tempban that player
thunder = Du {0} torden i din verden
thunderDuration = Du {0} torden i din verden i {1} sekunder.
timeBeforeHeal = Tid inden n\u00e6ste helbredelse: {0}
diff --git a/Essentials/src/messages_de.properties b/Essentials/src/messages_de.properties
index a01c0e211..cfc7f41e4 100644
--- a/Essentials/src/messages_de.properties
+++ b/Essentials/src/messages_de.properties
@@ -256,6 +256,7 @@ teleportationEnabled = \u00a77Teleportierung aktiviert.
teleporting = \u00a77Teleportiere...
teleportingPortal = \u00a77Teleportiere durch Portal.
tempBanned = Zeitlich gesperrt vom Server f\u00fcr {0}
+tempbanExempt = \u00a77You may not tempban that player
thunder = Du hast Donner in deiner Welt {0}.
thunderDuration = Du hast Donner in deiner Welt {0} f\u00fcr {1} Sekunden.
timeBeforeHeal = Zeit bis zur n\u00e4chsten Heilung: {0}
diff --git a/Essentials/src/messages_en.properties b/Essentials/src/messages_en.properties
index 7d838ed09..d65e6fd7f 100644
--- a/Essentials/src/messages_en.properties
+++ b/Essentials/src/messages_en.properties
@@ -182,6 +182,7 @@ nickSet = \u00a77Your nickname is now \u00a7c{0}
noAccessCommand = \u00a7cYou do not have access to that command.
noAccessPermission = \u00a7cYou do not have permission to access that {0}.
noDestroyPermission = \u00a7cYou do not have permission to destroy that {0}.
+noHelpFound = \u00a7cNo matching commands.
noHomeSet = You have not set a home.
noHomeSetPlayer = Player has not set a home.
noKitPermission = \u00a7cYou need the \u00a7c{0}\u00a7c permission to use that kit.
@@ -256,6 +257,7 @@ teleportationEnabled = \u00a77Teleportation enabled.
teleporting = \u00a77Teleporting...
teleportingPortal = \u00a77Teleporting via portal.
tempBanned = Temporarily banned from server for {0}
+tempbanExempt = \u00a77You may not tempban that player
thunder = You {0} thunder in your world
thunderDuration = You {0} thunder in your world for {1} seconds.
timeBeforeHeal = Time before next heal: {0}
diff --git a/Essentials/src/messages_fr.properties b/Essentials/src/messages_fr.properties
index bbdd5888a..e5591cb96 100644
--- a/Essentials/src/messages_fr.properties
+++ b/Essentials/src/messages_fr.properties
@@ -256,6 +256,7 @@ teleportationEnabled = \u00a77T\u00e9l\u00e9portation activ\u00e9e.
teleporting = \u00a77T\u00e9l\u00e9poration en cours...
teleportingPortal = \u00a77T\u00e9l\u00e9portation via portail.
tempBanned = Banni temporairement du serveur pour {0}
+tempbanExempt = \u00a77You may not tempban that player
thunder = Vous avez {0} la foudre dans votre monde.
thunderDuration = Vous avez {0} la foudre dans le serveur {1} secondes.
timeBeforeHeal = Temps avant le prochain soin : {0}
diff --git a/Essentials/src/messages_nl.properties b/Essentials/src/messages_nl.properties
index 5ce098bdf..5091b6d42 100644
--- a/Essentials/src/messages_nl.properties
+++ b/Essentials/src/messages_nl.properties
@@ -257,6 +257,7 @@ teleportationEnabled = \u00a77Teleportatie ingeschakeld.
teleporting = \u00a77Bezig met teleporteren...
teleportingPortal = \u00a77Bezig met teleporteren via de portal.
tempBanned = Tijdelijk geband voor {0}
+tempbanExempt = \u00a77You may not tempban that player
thunder = Je {0} onweert de wereld
thunderDuration = Je {0} onweert de wereld voor {1} seconde.
timeBeforeHeal = Afkoeltijd tot de volgende heal: {0}
diff --git a/Essentials/src/plugin.yml b/Essentials/src/plugin.yml
index d3113a636..26bcf5806 100644
--- a/Essentials/src/plugin.yml
+++ b/Essentials/src/plugin.yml
@@ -30,7 +30,7 @@ commands:
balancetop:
description: Gets the top x balance values. (max 10)
usage: /<command> <max>
- aliases:
+ aliases: [baltop,ebaltop,ebalancetop]
ban:
description: Bans a player.
usage: /<command> [player] <reason>
@@ -58,6 +58,7 @@ commands:
compass:
description: Describes your current bearing.
usage: /<command>
+ aliases: [ecompass]
deljail:
description: Removes a jail
usage: /<command> [jailname]
@@ -80,7 +81,7 @@ commands:
ext:
description: Extinguish players.
usage: /<command> <player>
- aliases: [extinguish]
+ aliases: [extinguish,eext,eextinguish]
fireball:
description: Throw a fireball.
usage: /<command>
@@ -162,6 +163,7 @@ commands:
lightning:
description: The power of Thor. Strike at cursor or player.
usage: /<command> [player]
+ aliases: [strike,elightning,estrike]
mail:
description: Manages inter-player, intra-server mail.
usage: /<command> [read|clear|send [to] [message]]
@@ -205,7 +207,7 @@ commands:
r:
description: Quickly reply to the last player to message you.
usage: /<command> [message]
- aliases: [er]
+ aliases: [er,reply,ereply]
realname:
description: Displays the username of a user based on nickname.
usage: /<command> [nickname]