2022-04-21 06:48:24 +08:00
|
|
|
package emu.grasscutter.command.commands;
|
|
|
|
|
|
|
|
import emu.grasscutter.command.Command;
|
|
|
|
import emu.grasscutter.command.CommandHandler;
|
2022-04-27 12:24:25 +08:00
|
|
|
import emu.grasscutter.game.player.Player;
|
2022-05-04 17:16:42 +08:00
|
|
|
import emu.grasscutter.utils.Position;
|
2022-04-21 06:48:24 +08:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2022-05-06 12:57:45 +08:00
|
|
|
import static emu.grasscutter.utils.Language.translate;
|
|
|
|
|
2022-05-08 10:33:53 +08:00
|
|
|
@Command(label = "position", usage = "position", aliases = {"pos"})
|
2022-04-21 06:48:24 +08:00
|
|
|
public final class PositionCommand implements CommandHandler {
|
|
|
|
|
2022-05-08 10:33:53 +08:00
|
|
|
@Override
|
|
|
|
public String description() {
|
|
|
|
return translate("commands.position.description");
|
|
|
|
}
|
|
|
|
|
2022-04-21 06:48:24 +08:00
|
|
|
@Override
|
2022-05-04 14:32:09 +08:00
|
|
|
public void execute(Player sender, Player targetPlayer, List<String> args) {
|
2022-05-04 17:16:42 +08:00
|
|
|
if (targetPlayer == null) {
|
2022-05-06 12:57:45 +08:00
|
|
|
CommandHandler.sendMessage(sender, translate("commands.execution.need_target"));
|
2022-04-21 06:48:24 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2022-05-04 17:16:42 +08:00
|
|
|
Position pos = targetPlayer.getPos();
|
2022-05-06 12:57:45 +08:00
|
|
|
CommandHandler.sendMessage(sender, translate("commands.position.success",
|
|
|
|
Float.toString(pos.getX()), Float.toString(pos.getY()), Float.toString(pos.getZ()),
|
|
|
|
Integer.toString(targetPlayer.getSceneId())));
|
2022-04-21 06:48:24 +08:00
|
|
|
}
|
|
|
|
}
|