69 lines
2.2 KiB
Java
69 lines
2.2 KiB
Java
package me.libraryaddict.disguise.commands;
|
|
|
|
import me.libraryaddict.disguise.DisguiseAPI;
|
|
import me.libraryaddict.disguise.utilities.LibsMsg;
|
|
import me.libraryaddict.disguise.utilities.TranslateType;
|
|
import org.bukkit.ChatColor;
|
|
import org.bukkit.command.Command;
|
|
import org.bukkit.command.CommandExecutor;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Entity;
|
|
import org.bukkit.entity.Player;
|
|
|
|
public class UndisguiseRadiusCommand implements CommandExecutor {
|
|
private int maxRadius = 30;
|
|
|
|
public UndisguiseRadiusCommand(int maxRadius) {
|
|
this.maxRadius = maxRadius;
|
|
}
|
|
|
|
private boolean isNumeric(String string) {
|
|
try {
|
|
Integer.parseInt(string);
|
|
return true;
|
|
}
|
|
catch (Exception ex) {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public boolean onCommand(CommandSender sender, Command cmd, String label, String[] args) {
|
|
if (sender.getName().equals("CONSOLE")) {
|
|
sender.sendMessage(LibsMsg.NO_CONSOLE.get());
|
|
return true;
|
|
}
|
|
|
|
if (sender.hasPermission("libsdisguises.undisguiseradius")) {
|
|
int radius = maxRadius;
|
|
if (args.length > 0) {
|
|
if (!isNumeric(args[0])) {
|
|
sender.sendMessage(LibsMsg.NOT_NUMBER.get(args[0]));
|
|
return true;
|
|
}
|
|
radius = Integer.parseInt(args[0]);
|
|
if (radius > maxRadius) {
|
|
sender.sendMessage(LibsMsg.LIMITED_RADIUS.get(maxRadius));
|
|
radius = maxRadius;
|
|
}
|
|
}
|
|
|
|
int disguisedEntitys = 0;
|
|
for (Entity entity : ((Player) sender).getNearbyEntities(radius, radius, radius)) {
|
|
if (entity == sender) {
|
|
continue;
|
|
}
|
|
if (DisguiseAPI.isDisguised(entity)) {
|
|
DisguiseAPI.undisguiseToAll(entity);
|
|
disguisedEntitys++;
|
|
}
|
|
}
|
|
|
|
sender.sendMessage(LibsMsg.UNDISRADIUS.get(disguisedEntitys));
|
|
} else {
|
|
sender.sendMessage(LibsMsg.NO_PERM.get());
|
|
}
|
|
return true;
|
|
}
|
|
}
|