2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2012-01-18 13:01:50 +01:00
|
|
|
import com.massivecraft.factions.Faction;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.FPlayer;
|
2011-10-09 14:53:38 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2011-10-23 17:30:41 +02:00
|
|
|
import com.massivecraft.factions.struct.Rel;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-23 17:55:53 +02:00
|
|
|
public class CmdOfficer extends FCommand
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-23 17:55:53 +02:00
|
|
|
public CmdOfficer()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
|
|
|
super();
|
2011-10-23 17:55:53 +02:00
|
|
|
this.aliases.add("officer");
|
2011-03-22 18:48:09 +01:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
this.requiredArgs.add("player name");
|
|
|
|
//this.optionalArgs.put("", "");
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-23 17:55:53 +02:00
|
|
|
this.permission = Permission.OFFICER.node;
|
2011-10-09 21:57:43 +02:00
|
|
|
this.disableOnLock = true;
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2012-01-18 13:01:50 +01:00
|
|
|
senderMustBePlayer = false;
|
2011-10-09 14:53:38 +02:00
|
|
|
senderMustBeMember = false;
|
2011-10-23 17:55:53 +02:00
|
|
|
senderMustBeOfficer = false;
|
2012-01-18 13:01:50 +01:00
|
|
|
senderMustBeLeader = false;
|
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()
|
|
|
|
{
|
|
|
|
FPlayer you = this.argAsBestFPlayerMatch(0);
|
|
|
|
if (you == null) return;
|
2012-01-18 13:01:50 +01:00
|
|
|
|
|
|
|
boolean permAny = Permission.OFFICER_ANY.has(sender, false);
|
|
|
|
Faction targetFaction = you.getFaction();
|
|
|
|
|
|
|
|
if (targetFaction != myFaction && !permAny)
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-10-21 19:20:33 +02:00
|
|
|
msg("%s<b> is not a member in your faction.", you.describeTo(fme, true));
|
2011-03-22 15:45:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-18 13:01:50 +01:00
|
|
|
if (fme != null && fme.getRole() != Rel.LEADER && !permAny)
|
|
|
|
{
|
|
|
|
msg("<b>You are not the faction leader.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (you == fme && !permAny)
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-10-10 13:40:24 +02:00
|
|
|
msg("<b>The target player musn't be yourself.");
|
2011-03-22 15:45:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2012-01-18 13:01:50 +01:00
|
|
|
if (you.getRole() == Rel.LEADER)
|
|
|
|
{
|
|
|
|
msg("<b>The target player is a faction leader. Demote them first.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-23 17:30:41 +02:00
|
|
|
if (you.getRole() == Rel.OFFICER)
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
// Revoke
|
2011-10-23 17:30:41 +02:00
|
|
|
you.setRole(Rel.MEMBER);
|
2012-01-18 13:01:50 +01:00
|
|
|
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));
|
2011-10-09 14:53:38 +02:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
// Give
|
2011-10-23 17:30:41 +02:00
|
|
|
you.setRole(Rel.OFFICER);
|
2012-01-18 13:01:50 +01:00
|
|
|
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));
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|