mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-18 22:49:45 +00:00
116 lines
2.9 KiB
Java
116 lines
2.9 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import static com.earth2me.essentials.I18n._;
|
|
import com.earth2me.essentials.User;
|
|
import java.util.List;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.command.CommandSender;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.entity.EntityRegainHealthEvent;
|
|
import org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason;
|
|
import org.bukkit.potion.PotionEffect;
|
|
|
|
|
|
public class Commandheal extends EssentialsCommand
|
|
{
|
|
public Commandheal()
|
|
{
|
|
super("heal");
|
|
}
|
|
|
|
@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.heal.others"))
|
|
{
|
|
if (args[0].trim().length() < 2)
|
|
{
|
|
throw new PlayerNotFoundException();
|
|
}
|
|
if (!user.isAuthorized("essentials.heal.cooldown.bypass"))
|
|
{
|
|
user.healCooldown();
|
|
}
|
|
healOtherPlayers(server, user.getBase(), args[0]);
|
|
return;
|
|
}
|
|
|
|
if (!user.isAuthorized("essentials.heal.cooldown.bypass"))
|
|
{
|
|
user.healCooldown();
|
|
}
|
|
healPlayer(user.getBase());
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final CommandSender sender, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
|
|
healOtherPlayers(server, sender, args[0]);
|
|
}
|
|
|
|
private void healOtherPlayers(final Server server, final CommandSender sender, final String name) throws Exception
|
|
{
|
|
boolean skipHidden = sender instanceof Player && !ess.getUser(sender).isAuthorized("essentials.vanish.interact");
|
|
boolean foundUser = false;
|
|
final List<Player> matchedPlayers = server.matchPlayer(name);
|
|
for (Player matchPlayer : matchedPlayers)
|
|
{
|
|
final User player = ess.getUser(matchPlayer);
|
|
if (skipHidden && player.isHidden())
|
|
{
|
|
continue;
|
|
}
|
|
foundUser = true;
|
|
try
|
|
{
|
|
healPlayer(matchPlayer);
|
|
sender.sendMessage(_("healOther", matchPlayer.getDisplayName()));
|
|
}
|
|
catch (QuietAbortException e)
|
|
{
|
|
//Handle Quietly
|
|
}
|
|
}
|
|
if (!foundUser)
|
|
{
|
|
throw new PlayerNotFoundException();
|
|
}
|
|
}
|
|
|
|
private void healPlayer(final Player player) throws Exception
|
|
{
|
|
if (player.getHealth() == 0)
|
|
{
|
|
throw new Exception(_("healDead"));
|
|
}
|
|
|
|
final double amount = player.getMaxHealth() - player.getHealth();
|
|
final EntityRegainHealthEvent erhe = new EntityRegainHealthEvent(player, amount, RegainReason.CUSTOM);
|
|
ess.getServer().getPluginManager().callEvent(erhe);
|
|
if (erhe.isCancelled())
|
|
{
|
|
throw new QuietAbortException();
|
|
}
|
|
|
|
double newAmount = player.getHealth() + erhe.getAmount();
|
|
if (newAmount > player.getMaxHealth())
|
|
{
|
|
newAmount = player.getMaxHealth();
|
|
}
|
|
|
|
player.setHealth(newAmount);
|
|
player.setFoodLevel(20);
|
|
player.setFireTicks(0);
|
|
player.sendMessage(_("heal"));
|
|
for (PotionEffect effect : player.getActivePotionEffects())
|
|
{
|
|
player.removePotionEffect(effect.getType());
|
|
}
|
|
}
|
|
}
|