mirror of
https://github.com/TotalFreedomMC/TF-EssentialsX.git
synced 2025-02-12 20:29:20 +00:00
52 lines
1.7 KiB
Java
52 lines
1.7 KiB
Java
package com.earth2me.essentials.commands;
|
|
|
|
import com.earth2me.essentials.CommandSource;
|
|
import static com.earth2me.essentials.I18n.tl;
|
|
import com.earth2me.essentials.User;
|
|
import org.bukkit.Server;
|
|
import org.bukkit.entity.Player;
|
|
import org.bukkit.event.entity.EntityDamageEvent;
|
|
|
|
|
|
public class Commandkill extends EssentialsLoopCommand
|
|
{
|
|
public Commandkill()
|
|
{
|
|
super("kill");
|
|
}
|
|
|
|
@Override
|
|
public void run(final Server server, final CommandSource sender, final String commandLabel, final String[] args) throws Exception
|
|
{
|
|
if (args.length < 1)
|
|
{
|
|
throw new NotEnoughArgumentsException();
|
|
}
|
|
|
|
loopOnlinePlayers(server, sender, true, true, args[0], null);
|
|
}
|
|
|
|
@Override
|
|
protected void updatePlayer(final Server server, final CommandSource sender, final User user, final String[] args) throws PlayerExemptException
|
|
{
|
|
final Player matchPlayer = user.getBase();
|
|
if (sender.isPlayer() && user.isAuthorized("essentials.kill.exempt") && !ess.getUser(sender.getPlayer()).isAuthorized("essentials.kill.force"))
|
|
{
|
|
throw new PlayerExemptException(tl("killExempt", matchPlayer.getDisplayName()));
|
|
}
|
|
final EntityDamageEvent ede = new EntityDamageEvent(matchPlayer, sender.isPlayer() && sender.getPlayer().getName().equals(matchPlayer.getName()) ? EntityDamageEvent.DamageCause.SUICIDE : EntityDamageEvent.DamageCause.CUSTOM, Short.MAX_VALUE);
|
|
server.getPluginManager().callEvent(ede);
|
|
if (ede.isCancelled() && sender.isPlayer() && !ess.getUser(sender.getPlayer()).isAuthorized("essentials.kill.force"))
|
|
{
|
|
return;
|
|
}
|
|
matchPlayer.damage(Short.MAX_VALUE);
|
|
|
|
if (matchPlayer.getHealth() > 0)
|
|
{
|
|
matchPlayer.setHealth(0);
|
|
}
|
|
|
|
sender.sendMessage(tl("kill", matchPlayer.getDisplayName()));
|
|
}
|
|
}
|