mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-15 05:33:40 +00:00
85 lines
1.9 KiB
Java
85 lines
1.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.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 (!user.isAuthorized("essentials.heal.cooldown.bypass"))
|
|
{
|
|
user.healCooldown();
|
|
}
|
|
healOtherPlayers(server, user, args[0]);
|
|
return;
|
|
}
|
|
|
|
if (!user.isAuthorized("essentials.heal.cooldown.bypass"))
|
|
{
|
|
user.healCooldown();
|
|
}
|
|
healPlayer(user);
|
|
}
|
|
|
|
@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
|
|
{
|
|
final List<Player> players = server.matchPlayer(name);
|
|
if (players.isEmpty())
|
|
{
|
|
sender.sendMessage(_("playerNotFound"));
|
|
return;
|
|
}
|
|
for (Player p : players)
|
|
{
|
|
if (ess.getUser(p).isHidden())
|
|
{
|
|
continue;
|
|
}
|
|
healPlayer(p);
|
|
sender.sendMessage(_("healOther", p.getDisplayName()));
|
|
}
|
|
}
|
|
|
|
private void healPlayer(final Player player) throws Exception
|
|
{
|
|
if (player.getHealth() == 0)
|
|
{
|
|
throw new Exception(_("healDead"));
|
|
}
|
|
player.setHealth(player.getMaxHealth());
|
|
player.setFoodLevel(20);
|
|
player.setFireTicks(0);
|
|
player.sendMessage(_("heal"));
|
|
for (PotionEffect effect : player.getActivePotionEffects())
|
|
{
|
|
player.removePotionEffect(effect.getType());
|
|
}
|
|
}
|
|
}
|