2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2012-03-02 02:16:45 +01:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
|
2013-04-09 13:15:25 +02:00
|
|
|
import com.massivecraft.factions.ConfServer;
|
2013-04-09 13:24:55 +02:00
|
|
|
import com.massivecraft.factions.FPerm;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.FPlayer;
|
|
|
|
import com.massivecraft.factions.Faction;
|
2013-04-09 13:00:09 +02:00
|
|
|
import com.massivecraft.factions.Factions;
|
2013-04-09 12:56:29 +02:00
|
|
|
import com.massivecraft.factions.Perm;
|
2013-04-09 13:24:55 +02:00
|
|
|
import com.massivecraft.factions.Rel;
|
2013-04-16 11:05:49 +02:00
|
|
|
import com.massivecraft.factions.cmd.arg.ARFPlayer;
|
2013-04-19 12:27:39 +02:00
|
|
|
import com.massivecraft.factions.event.FactionsEventLeave;
|
2013-04-16 10:11:59 +02:00
|
|
|
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public class CmdFactionsKick extends FCommand
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public CmdFactionsKick()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addAliases("kick");
|
2011-03-22 18:48:09 +01:00
|
|
|
|
2013-04-16 10:30:21 +02:00
|
|
|
this.addRequiredArg("player");
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.KICK.node));
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-10-09 14:53:38 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2013-04-16 11:05:49 +02:00
|
|
|
FPlayer you = this.arg(1, ARFPlayer.getStartAny());
|
2011-10-09 14:53:38 +02:00
|
|
|
if (you == null) return;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
if (fme == you)
|
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<b>You cannot kick yourself.");
|
2013-04-16 11:27:03 +02:00
|
|
|
msg("<i>You might want to: %s", Factions.get().getOuterCmdFactions().cmdFactionsLeave.getUseageTemplate(false));
|
2011-03-22 15:45:41 +01:00
|
|
|
return;
|
|
|
|
}
|
2011-12-23 01:13:55 +01:00
|
|
|
|
2013-04-16 11:27:03 +02:00
|
|
|
if (you.getRole() == Rel.LEADER && !(this.senderIsConsole || fme.isUsingAdminMode()))
|
2011-12-23 01:13:55 +01:00
|
|
|
{
|
|
|
|
msg("<b>The leader can not be kicked.");
|
|
|
|
return;
|
|
|
|
}
|
2011-07-09 05:06:55 +02:00
|
|
|
|
2013-04-09 13:15:25 +02:00
|
|
|
if ( ! ConfServer.canLeaveWithNegativePower && you.getPower() < 0)
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-10-25 21:18:08 +02:00
|
|
|
msg("<b>You cannot kick that member until their power is positive.");
|
|
|
|
return;
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
2011-10-25 21:18:08 +02:00
|
|
|
|
|
|
|
Faction yourFaction = you.getFaction();
|
2011-07-09 05:06:55 +02:00
|
|
|
|
2011-10-25 21:18:08 +02:00
|
|
|
if (fme != null && ! FPerm.KICK.has(fme, yourFaction)) return;
|
2012-03-13 15:48:34 +01:00
|
|
|
|
2012-03-09 23:09:33 +01:00
|
|
|
// trigger the leave event (cancellable) [reason:kicked]
|
2013-04-19 12:27:39 +02:00
|
|
|
FactionsEventLeave event = new FactionsEventLeave(you, you.getFaction(), FactionsEventLeave.PlayerLeaveReason.KICKED);
|
2012-03-02 02:16:45 +01:00
|
|
|
Bukkit.getServer().getPluginManager().callEvent(event);
|
|
|
|
if (event.isCancelled()) return;
|
2012-03-13 15:48:34 +01:00
|
|
|
|
|
|
|
// then make 'em pay (if applicable)
|
2013-04-19 09:50:33 +02:00
|
|
|
if (!payForCommand(ConfServer.econCostKick)) return;
|
2012-03-13 15:48:34 +01:00
|
|
|
|
2011-10-21 19:20:33 +02:00
|
|
|
yourFaction.msg("%s<i> kicked %s<i> from the faction! :O", fme.describeTo(yourFaction, true), you.describeTo(yourFaction, true));
|
|
|
|
you.msg("%s<i> kicked you from %s<i>! :O", fme.describeTo(you, true), yourFaction.describeTo(you));
|
2011-10-09 14:53:38 +02:00
|
|
|
if (yourFaction != myFaction)
|
|
|
|
{
|
2011-10-21 19:20:33 +02:00
|
|
|
fme.msg("<i>You kicked %s<i> from the faction %s<i>!", you.describeTo(fme), yourFaction.describeTo(fme));
|
2011-05-29 23:41:50 +02:00
|
|
|
}
|
2011-07-09 05:06:55 +02:00
|
|
|
|
2013-04-09 13:15:25 +02:00
|
|
|
if (ConfServer.logFactionKick)
|
2013-04-09 13:12:13 +02:00
|
|
|
Factions.get().log((senderIsConsole ? "A console command" : fme.getName())+" kicked "+you.getName()+" from the faction: "+yourFaction.getTag());
|
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
|
|
|
|
2011-12-18 14:50:41 +01:00
|
|
|
if (you.getRole() == Rel.LEADER)
|
|
|
|
yourFaction.promoteNewLeader();
|
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
|
|
|
|
2011-12-18 14:50:41 +01:00
|
|
|
yourFaction.deinvite(you);
|
|
|
|
you.resetFactionData();
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|