1
0
mirror of https://github.com/essentials/Essentials.git synced 2025-08-24 15:23:20 +02:00

Merge pull request #454 from Riaku/master

move commandAntioch to extras
This commit is contained in:
Iaccidentally
2013-05-04 14:03:40 -07:00
4 changed files with 28 additions and 2 deletions

View File

@@ -507,5 +507,6 @@ recipeGridItem=\ \u00a7{0}X \u00a76is \u00a7c{1}
recipeMore=\u00a76Type /{0} \u00a7c{1}\u00a76 <number> to see other recipes for \u00a7c{2}
recipeWhere=\u00a76Where: {0}
invalidIpAddress=\u00a74Invalid IP address
ItemDatabaseResponse=\u00a7c{0}\u00a76- {1}\u00a76:{2}
#, java-format
Hello\ {0},\ how\ are\ you?=\u00a7fHello \u00a74{0}\u00a7f, how are you?

View File

@@ -30,7 +30,8 @@ public class Commanditemdb extends EssentialsCommand
}
final Material itemType = itemStack.getType();
final int id = itemType.getId();
sender.sendMessage(itemStack.getType().toString() + "- " + id + ":" + Integer.toString(itemStack.getData().getData()));
final String data = Integer.toString(itemStack.getData().getData());
sender.sendMessage(_("ItemDatabaseResponse", itemStack.getType().toString(), id, data));
if (id != 0)
{
final int maxuses = itemType.getMaxDurability();

View File

@@ -12,7 +12,7 @@ commands:
usage: /<command>
aliases: [eafk]
antioch:
description: 'A little surprise for operators.'
description: A little surprise for operators.
usage: /<command> [message]
aliases: [eantioch,grenade,tnt,egrenade,etnt]
back:

View File

@@ -0,0 +1,24 @@
package net.ess3.extra.commands;
import net.ess3.api.IUser;
import net.ess3.commands.EssentialsCommand;
import net.ess3.utils.LocationUtil;
import org.bukkit.Location;
import org.bukkit.Server;
import org.bukkit.entity.TNTPrimed;
// This command has a theme message that only shows if you supply a parameter #EasterEgg
public class Commandantioch extends EssentialsCommand
{
public void run(final Server server, final IUser user, final String commandLabel, final String[] args) throws Exception
{
if (args.length > 0)
{
ess.broadcastMessage(user, "...lobbest thou thy Holy Hand Grenade of Antioch towards thy foe,");
ess.broadcastMessage(user, "who being naughty in My sight, shall snuff it.");
}
final Location loc = LocationUtil.getTarget(user.getPlayer());
loc.getWorld().spawn(loc, TNTPrimed.class);
}
}