2011-03-19 22:39:51 +00:00
|
|
|
package com.earth2me.essentials.spawn;
|
|
|
|
|
2011-12-08 02:21:10 +00:00
|
|
|
import static com.earth2me.essentials.I18n._;
|
2011-06-13 13:05:11 +00:00
|
|
|
import com.earth2me.essentials.Trade;
|
2011-03-19 22:39:51 +00:00
|
|
|
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;
|
2011-12-08 02:21:10 +00:00
|
|
|
import org.bukkit.Location;
|
2011-11-21 01:55:26 +00:00
|
|
|
import org.bukkit.Server;
|
2011-12-04 01:21:05 +00:00
|
|
|
import org.bukkit.command.CommandSender;
|
2011-12-07 01:12:36 +00:00
|
|
|
import org.bukkit.event.player.PlayerTeleportEvent.TeleportCause;
|
2011-03-19 22:39:51 +00:00
|
|
|
|
|
|
|
|
|
|
|
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-12-08 02:21:10 +00:00
|
|
|
{
|
2011-06-13 13:05:11 +00:00
|
|
|
final Trade charge = new Trade(this.getName(), ess);
|
2011-05-22 18:53:23 +00:00
|
|
|
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);
|
2011-12-08 02:21:10 +00:00
|
|
|
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
|
2011-12-08 02:21:10 +00:00
|
|
|
{
|
|
|
|
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);
|
2011-12-08 02:21:10 +00:00
|
|
|
respawn(user, null);
|
2011-12-04 01:21:05 +00:00
|
|
|
user.sendMessage(_("teleportAtoB", user.getDisplayName(), "spawn"));
|
|
|
|
sender.sendMessage(_("teleporting"));
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|
2011-12-08 02:21:10 +00:00
|
|
|
|
|
|
|
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);
|
|
|
|
}
|
2011-03-19 22:39:51 +00:00
|
|
|
}
|