mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
53 lines
1.7 KiB
Java
53 lines
1.7 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.CommandSource;
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.Location;
|
|
import org.bukkit.Server;
|
|
|
|
|
|
public class Commandgetpos extends EssentialsCommand
|
|
{
|
|
public Commandgetpos()
|
|
{
|
|
super("getpos");
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final User user, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
if (args.length > 0 && user.isAuthorized("essentials.getpos.others"))
|
|
{
|
|
final User otherUser = getPlayer(server, user, args, 0);
|
|
outputPosition(user.getSource(), otherUser.getLocation(), user.getLocation());
|
|
return;
|
|
}
|
|
outputPosition(user.getSource(), user.getLocation(), null);
|
|
}
|
|
|
|
@Override
|
|
protected void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
final User user = getPlayer(server, args, 0, true, false);
|
|
outputPosition(sender, user.getLocation(), null);
|
|
}
|
|
|
|
private void outputPosition(final CommandSource sender, final Location coords, final Location distance)
|
|
{
|
|
sender.sendMessage(tl("currentWorld", coords.getWorld().getName()));
|
|
sender.sendMessage(tl("posX", coords.getBlockX()));
|
|
sender.sendMessage(tl("posY", coords.getBlockY()));
|
|
sender.sendMessage(tl("posZ", coords.getBlockZ()));
|
|
sender.sendMessage(tl("posYaw", (coords.getYaw() + 180 + 360) % 360));
|
|
sender.sendMessage(tl("posPitch", coords.getPitch()));
|
|
if (distance != null && coords.getWorld().equals(distance.getWorld()))
|
|
{
|
|
sender.sendMessage(tl("distance", coords.distance(distance)));
|
|
}
|
|
}
|
|
}
|