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

61 lines
1.8 KiB
Java
Raw Normal View History

package com.earth2me.essentials.spawn;
import static com.earth2me.essentials.I18n._;
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 org.bukkit.Location;
import org.bukkit.Server;
2011-12-04 01:21:05 +00:00
import org.bukkit.command.CommandSender;
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
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);
respawn(otherUser, null);
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
{
respawn(user, null);
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);
respawn(user, null);
2011-12-04 01:21:05 +00:00
user.sendMessage(_("teleportAtoB", user.getDisplayName(), "spawn"));
sender.sendMessage(_("teleporting"));
}
private void respawn (final User user, final Trade charge) throws Exception {
final SpawnStorage spawns = (SpawnStorage)this.module;
final Location spawn = spawns.getSpawn(user.getGroup());
user.getTeleport().teleport(spawn, charge, TeleportCause.COMMAND);
}
}