summaryrefslogtreecommitdiffstats
path: root/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java
diff options
context:
space:
mode:
authorsnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-06-02 13:24:26 +0000
committersnowleo <snowleo@e251c2fe-e539-e718-e476-b85c1f46cddb>2011-06-02 13:24:26 +0000
commit2d038579badae3bea197d1a7fa7801e8a74e6e97 (patch)
treed02679b01badc46357c4b69bf52bc08e1479bb1f /EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java
parentba86a338c2578044ee451138192de2b525260944 (diff)
downloadEssentials-2d038579badae3bea197d1a7fa7801e8a74e6e97.tar
Essentials-2d038579badae3bea197d1a7fa7801e8a74e6e97.tar.gz
Essentials-2d038579badae3bea197d1a7fa7801e8a74e6e97.tar.lz
Essentials-2d038579badae3bea197d1a7fa7801e8a74e6e97.tar.xz
Essentials-2d038579badae3bea197d1a7fa7801e8a74e6e97.zip
Added EssentialsXMPP from newplugins branch.
Updated to work with trunk. git-svn-id: https://svn.java.net/svn/essentials~svn/trunk@1564 e251c2fe-e539-e718-e476-b85c1f46cddb
Diffstat (limited to 'EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java')
-rw-r--r--EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java39
1 files changed, 39 insertions, 0 deletions
diff --git a/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java
new file mode 100644
index 000000000..49aa2a6ea
--- /dev/null
+++ b/EssentialsXMPP/src/com/earth2me/essentials/xmpp/Commandxmpp.java
@@ -0,0 +1,39 @@
+package com.earth2me.essentials.xmpp;
+
+import com.earth2me.essentials.Console;
+import com.earth2me.essentials.commands.EssentialsCommand;
+import com.earth2me.essentials.commands.NotEnoughArgumentsException;
+import org.bukkit.Server;
+import org.bukkit.command.CommandSender;
+import org.bukkit.entity.Player;
+
+
+public class Commandxmpp extends EssentialsCommand
+{
+ public Commandxmpp()
+ {
+ super("xmpp");
+ }
+
+ @Override
+ protected void run(Server server, CommandSender sender, String commandLabel, String[] args) throws Exception
+ {
+ if (args.length < 2)
+ {
+ throw new NotEnoughArgumentsException();
+ }
+
+ final String message = getFinalArg(args, 1);
+ final String address = EssentialsXMPP.getInstance().getAddress(args[0]);
+ if (address == null)
+ {
+ sender.sendMessage("§cThere are no players matching that name.");
+ }
+ else
+ {
+ final String senderName = sender instanceof Player ? ess.getUser(sender).getDisplayName() : Console.NAME;
+ sender.sendMessage("[" + senderName + ">" + address + "] " + message);
+ EssentialsXMPP.getInstance().sendMessage(address, "[" + senderName + "] " + message);
+ }
+ }
+}