TF-EssentialsX/EssentialsSpawn/src/com/earth2me/essentials/spawn/Commandspawn.java

53 lines
1.5 KiB
Java
Raw Normal View History

package com.earth2me.essentials.spawn;
2011-06-13 13:05:11 +00:00
import com.earth2me.essentials.Trade;
import com.earth2me.essentials.User;
import com.earth2me.essentials.commands.EssentialsCommand;
2011-12-04 01:21:05 +00:00
import com.earth2me.essentials.commands.NotEnoughArgumentsException;
import static com.earth2me.essentials.I18n._;
import org.bukkit.Server;
2011-12-04 01:21:05 +00:00
import org.bukkit.command.CommandSender;
public class Commandspawn extends EssentialsCommand
{
public Commandspawn()
{
super("spawn");
}
@Override
2011-12-04 01:21:05 +00:00
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
{
2011-06-13 13:05:11 +00:00
final Trade charge = new Trade(this.getName(), ess);
charge.isAffordableFor(user);
2011-12-04 21:09:36 +00:00
if (args.length > 0 && user.isAuthorized("essentials.spawn.others"))
2011-12-04 01:21:05 +00:00
{
2011-12-04 21:09:36 +00:00
final User otherUser = getPlayer(server, args, 0);
otherUser.getTeleport().respawn(charge);
2011-12-04 21:09:36 +00:00
if (!otherUser.equals(user))
2011-12-04 01:21:05 +00:00
{
otherUser.sendMessage(_("teleportAtoB", user.getDisplayName(), "spawn"));
user.sendMessage(_("teleporting"));
}
}
else
{
user.getTeleport().respawn(charge);
2011-12-04 01:21:05 +00:00
}
}
@Override
protected void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
{
if (args.length < 1)
{
throw new NotEnoughArgumentsException();
}
2011-12-04 21:09:36 +00:00
final User user = getPlayer(server, args, 0);
user.getTeleport().respawn(null);
2011-12-04 01:21:05 +00:00
user.sendMessage(_("teleportAtoB", user.getDisplayName(), "spawn"));
sender.sendMessage(_("teleporting"));
}
}