Factions/src/com/massivecraft/factions/cmd/CmdFactionsOfficer.java

72 lines
1.7 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Perm;
import com.massivecraft.factions.Rel;
2013-04-16 11:05:49 +02:00
import com.massivecraft.factions.cmd.arg.ARFPlayer;
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.entity.FPlayer;
import com.massivecraft.factions.entity.Faction;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
2013-04-10 13:12:22 +02:00
public class CmdFactionsOfficer extends FCommand
{
2013-04-10 13:12:22 +02:00
public CmdFactionsOfficer()
{
2013-04-16 10:11:59 +02:00
this.addAliases("officer");
this.addRequiredArg("player");
2013-04-16 10:11:59 +02:00
this.addRequirements(ReqHasPerm.get(Perm.OFFICER.node));
}
@Override
public void perform()
{
2013-04-16 11:05:49 +02:00
FPlayer you = this.arg(0, ARFPlayer.getStartAny());
if (you == null) return;
boolean permAny = Perm.OFFICER_ANY.has(sender, false);
Faction targetFaction = you.getFaction();
if (targetFaction != myFaction && !permAny)
{
2011-10-21 19:20:33 +02:00
msg("%s<b> is not a member in your faction.", you.describeTo(fme, true));
return;
}
if (fme != null && fme.getRole() != Rel.LEADER && !permAny)
{
msg("<b>You are not the faction leader.");
return;
}
if (you == fme && !permAny)
{
2011-10-10 13:40:24 +02:00
msg("<b>The target player musn't be yourself.");
return;
}
if (you.getRole() == Rel.LEADER)
{
msg("<b>The target player is a faction leader. Demote them first.");
return;
}
if (you.getRole() == Rel.OFFICER)
{
// Revoke
you.setRole(Rel.MEMBER);
targetFaction.msg("%s<i> is no longer officer in your faction.", you.describeTo(targetFaction, true));
msg("<i>You have removed officer status from %s<i>.", you.describeTo(fme, true));
}
else
{
// Give
you.setRole(Rel.OFFICER);
targetFaction.msg("%s<i> was promoted to officer in your faction.", you.describeTo(targetFaction, true));
msg("<i>You have promoted %s<i> to officer.", you.describeTo(fme, true));
}
}
}