package com.massivecraft.factions.cmd; import org.bukkit.Bukkit; import com.massivecraft.factions.ConfServer; import com.massivecraft.factions.FPerm; import com.massivecraft.factions.FPlayer; import com.massivecraft.factions.Faction; import com.massivecraft.factions.Factions; import com.massivecraft.factions.Perm; import com.massivecraft.factions.Rel; import com.massivecraft.factions.cmd.arg.ARFPlayer; import com.massivecraft.factions.event.FactionsEventLeave; import com.massivecraft.mcore.cmd.req.ReqHasPerm; public class CmdFactionsKick extends FCommand { public CmdFactionsKick() { this.addAliases("kick"); this.addRequiredArg("player"); this.addRequirements(ReqHasPerm.get(Perm.KICK.node)); } @Override public void perform() { FPlayer you = this.arg(1, ARFPlayer.getStartAny()); if (you == null) return; if (fme == you) { msg("You cannot kick yourself."); msg("You might want to: %s", Factions.get().getOuterCmdFactions().cmdFactionsLeave.getUseageTemplate(false)); return; } if (you.getRole() == Rel.LEADER && !(this.senderIsConsole || fme.isUsingAdminMode())) { msg("The leader can not be kicked."); return; } if ( ! ConfServer.canLeaveWithNegativePower && you.getPower() < 0) { msg("You cannot kick that member until their power is positive."); return; } Faction yourFaction = you.getFaction(); if (fme != null && ! FPerm.KICK.has(fme, yourFaction)) return; // trigger the leave event (cancellable) [reason:kicked] FactionsEventLeave event = new FactionsEventLeave(you, you.getFaction(), FactionsEventLeave.PlayerLeaveReason.KICKED); Bukkit.getServer().getPluginManager().callEvent(event); if (event.isCancelled()) return; // then make 'em pay (if applicable) if (!payForCommand(ConfServer.econCostKick)) return; yourFaction.msg("%s kicked %s from the faction! :O", fme.describeTo(yourFaction, true), you.describeTo(yourFaction, true)); you.msg("%s kicked you from %s! :O", fme.describeTo(you, true), yourFaction.describeTo(you)); if (yourFaction != myFaction) { fme.msg("You kicked %s from the faction %s!", you.describeTo(fme), yourFaction.describeTo(fme)); } if (ConfServer.logFactionKick) Factions.get().log((senderIsConsole ? "A console command" : fme.getName())+" kicked "+you.getName()+" from the faction: "+yourFaction.getTag()); if (you.getRole() == Rel.LEADER) yourFaction.promoteNewLeader(); yourFaction.deinvite(you); you.resetFactionData(); } }