2017-11-11 17:12:30 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.command;
|
|
|
|
|
|
|
|
import me.totalfreedom.totalfreedommod.admin.Admin;
|
|
|
|
import me.totalfreedom.totalfreedommod.rank.Displayable;
|
|
|
|
import org.bukkit.potion.PotionEffect;
|
|
|
|
import org.apache.commons.lang.StringUtils;
|
|
|
|
import org.bukkit.potion.PotionEffectType;
|
|
|
|
import me.totalfreedom.totalfreedommod.util.FLog;
|
|
|
|
import me.totalfreedom.totalfreedommod.util.FUtil;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import me.totalfreedom.totalfreedommod.rank.Rank;
|
|
|
|
|
2018-01-01 03:43:10 +00:00
|
|
|
@CommandPermissions(level = Rank.SUPER_ADMIN, source = SourceType.ONLY_IN_GAME)
|
2018-06-29 17:49:06 +00:00
|
|
|
@CommandParameters(description = "Vanish/unvanish yourself.", usage = "/<command> [-s[ilent]]", aliases = "v")
|
2017-11-11 17:12:30 +00:00
|
|
|
public class Command_vanish extends FreedomCommand
|
|
|
|
{
|
2018-06-29 19:36:42 +00:00
|
|
|
public static ArrayList<Player> VANISHED = new ArrayList<>();
|
2018-06-29 17:49:06 +00:00
|
|
|
|
2017-11-11 17:12:30 +00:00
|
|
|
public boolean run(final CommandSender sender, final Player playerSender, final Command cmd, final String commandLabel, final String[] args, final boolean senderIsConsole) {
|
2018-01-01 03:43:10 +00:00
|
|
|
Displayable display = plugin.rm.getDisplay(playerSender);
|
2017-11-11 17:12:30 +00:00
|
|
|
String loginMsg = display.getColoredLoginMessage();
|
2018-01-01 03:43:10 +00:00
|
|
|
String displayName = display.getColor() + playerSender.getName();
|
2018-03-28 10:37:40 +00:00
|
|
|
String tag = display.getColoredTag();
|
2018-01-01 03:43:10 +00:00
|
|
|
Admin admin = plugin.al.getAdmin(playerSender);
|
2018-06-29 17:49:06 +00:00
|
|
|
boolean silent = false;
|
|
|
|
if (args.length > 0)
|
|
|
|
{
|
|
|
|
if (args[0].equalsIgnoreCase("-s") || args[0].equalsIgnoreCase("-silent"))
|
|
|
|
{
|
|
|
|
silent = true;
|
|
|
|
}
|
|
|
|
}
|
2018-01-01 03:43:10 +00:00
|
|
|
if (VANISHED.contains(playerSender))
|
|
|
|
{
|
|
|
|
msg(ChatColor.GOLD + "You have been unvanished.");
|
|
|
|
if (admin.hasLoginMessage())
|
|
|
|
{
|
2017-11-11 17:12:30 +00:00
|
|
|
loginMsg = FUtil.colorize(admin.getLoginMessage());
|
|
|
|
}
|
2018-06-29 17:49:06 +00:00
|
|
|
if (!silent)
|
|
|
|
{
|
|
|
|
FUtil.bcastMsg(ChatColor.AQUA + playerSender.getName() + " is " + loginMsg);
|
|
|
|
FUtil.bcastMsg(playerSender.getName() + " joined the game", ChatColor.YELLOW);
|
|
|
|
}
|
2018-03-28 10:37:40 +00:00
|
|
|
if (admin.getTag() != null)
|
|
|
|
{
|
|
|
|
tag = FUtil.colorize(admin.getTag());
|
|
|
|
}
|
2018-04-19 14:29:19 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
plugin.pl.getPlayer(playerSender).setTag(tag);
|
|
|
|
}
|
2017-11-11 17:12:30 +00:00
|
|
|
FLog.info(playerSender.getName() + " is no longer vanished.");
|
2018-01-01 03:43:10 +00:00
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
|
|
{
|
2017-11-11 17:12:30 +00:00
|
|
|
player.showPlayer(playerSender);
|
|
|
|
}
|
2018-01-01 03:43:10 +00:00
|
|
|
plugin.esb.setVanished(playerSender.getName(), false);
|
2017-11-11 17:12:30 +00:00
|
|
|
playerSender.removePotionEffect(PotionEffectType.INVISIBILITY);
|
|
|
|
playerSender.setPlayerListName(StringUtils.substring(displayName, 0, 16));
|
2018-01-01 03:43:10 +00:00
|
|
|
VANISHED.remove(playerSender);
|
2017-11-11 17:12:30 +00:00
|
|
|
}
|
2018-01-01 03:43:10 +00:00
|
|
|
else
|
|
|
|
{
|
|
|
|
msg("You have been vanished.", ChatColor.GOLD);
|
2018-06-29 17:49:06 +00:00
|
|
|
if (!silent)
|
|
|
|
{
|
|
|
|
FUtil.bcastMsg(playerSender.getName() + " left the game", ChatColor.YELLOW);
|
|
|
|
}
|
2017-11-11 17:12:30 +00:00
|
|
|
FLog.info(playerSender.getName() + " is now vanished.");
|
2018-01-01 03:43:10 +00:00
|
|
|
for (Player player : server.getOnlinePlayers())
|
|
|
|
{
|
2017-11-11 17:12:30 +00:00
|
|
|
player.hidePlayer(playerSender);
|
|
|
|
}
|
2018-01-01 03:43:10 +00:00
|
|
|
plugin.esb.setVanished(playerSender.getName(), true);
|
2018-01-07 19:33:58 +00:00
|
|
|
playerSender.addPotionEffect(new PotionEffect(PotionEffectType.INVISIBILITY, 1000000, 1, false, true));
|
2018-01-01 03:43:10 +00:00
|
|
|
VANISHED.add(playerSender);
|
2017-11-11 17:12:30 +00:00
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|