2013-01-06 21:44:29 +01:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
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;
|
2014-09-17 13:29:58 +02:00
|
|
|
import com.massivecraft.factions.cmd.arg.ARMPlayer;
|
2014-09-17 13:17:33 +02:00
|
|
|
import com.massivecraft.factions.entity.MPlayer;
|
2014-06-04 14:02:23 +02:00
|
|
|
import com.massivecraft.massivecore.cmd.req.ReqHasPerm;
|
2013-01-06 21:44:29 +01:00
|
|
|
|
2014-09-18 13:41:20 +02:00
|
|
|
public class CmdFactionsPromote extends FactionsCommand
|
2013-01-06 21:44:29 +01:00
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public CmdFactionsPromote()
|
2013-01-06 21:44:29 +01:00
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
// Aliases
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addAliases("promote");
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// Args
|
2013-04-16 10:30:21 +02:00
|
|
|
this.addRequiredArg("player");
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// Requirements
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.PROMOTE.node));
|
2013-01-06 21:44:29 +01:00
|
|
|
|
|
|
|
//To promote someone from recruit -> member you must be an officer.
|
|
|
|
//To promote someone from member -> officer you must be a leader.
|
|
|
|
//We'll handle this internally
|
|
|
|
}
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
2013-01-06 21:44:29 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform()
|
|
|
|
{
|
2014-09-17 13:29:58 +02:00
|
|
|
MPlayer you = this.arg(0, ARMPlayer.getAny());
|
2013-01-06 21:44:29 +01:00
|
|
|
if (you == null) return;
|
|
|
|
|
2014-09-18 13:41:20 +02:00
|
|
|
if (you.getFaction() != msenderFaction)
|
2013-01-06 21:44:29 +01:00
|
|
|
{
|
2014-09-18 13:41:20 +02:00
|
|
|
msg("%s<b> is not a member in your faction.", you.describeTo(msender, true));
|
2013-01-06 21:44:29 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-09-18 13:41:20 +02:00
|
|
|
if (you == msender)
|
2013-01-06 21:44:29 +01:00
|
|
|
{
|
|
|
|
msg("<b>The target player mustn't be yourself.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (you.getRole() == Rel.RECRUIT)
|
|
|
|
{
|
2014-09-18 13:41:20 +02:00
|
|
|
if (!msender.getRole().isAtLeast(Rel.OFFICER))
|
2013-04-19 15:01:53 +02:00
|
|
|
{
|
2013-01-06 21:44:29 +01:00
|
|
|
msg("<b>You must be an officer to promote someone to member.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
you.setRole(Rel.MEMBER);
|
2014-09-18 13:41:20 +02:00
|
|
|
msenderFaction.msg("%s<i> was promoted to being a member of your faction.", you.describeTo(msenderFaction, true));
|
2013-01-06 21:44:29 +01:00
|
|
|
}
|
|
|
|
else if (you.getRole() == Rel.MEMBER)
|
|
|
|
{
|
2014-09-18 13:41:20 +02:00
|
|
|
if (!msender.getRole().isAtLeast(Rel.LEADER))
|
2013-04-19 15:01:53 +02:00
|
|
|
{
|
2013-01-06 21:44:29 +01:00
|
|
|
msg("<b>You must be the leader to promote someone to officer.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
// Give
|
|
|
|
you.setRole(Rel.OFFICER);
|
2014-09-18 13:41:20 +02:00
|
|
|
msenderFaction.msg("%s<i> was promoted to being a officer in your faction.", you.describeTo(msenderFaction, true));
|
2013-01-06 21:44:29 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|