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:29 +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-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.struct.Role;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
public class CmdMod extends FCommand
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
public CmdMod()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
|
|
|
super();
|
|
|
|
this.aliases.add("mod");
|
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-09 21:57:43 +02:00
|
|
|
this.permission = Permission.MOD.node;
|
|
|
|
this.disableOnLock = true;
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2012-01-18 13:01:29 +01:00
|
|
|
senderMustBePlayer = false;
|
2011-10-09 14:53:38 +02:00
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
2012-01-18 13:01:29 +01:00
|
|
|
senderMustBeAdmin = 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:29 +01:00
|
|
|
|
|
|
|
boolean permAny = Permission.MOD_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:29 +01:00
|
|
|
|
|
|
|
if (fme != null && fme.getRole() != Role.ADMIN && !permAny)
|
|
|
|
{
|
|
|
|
msg("<b>You are not the faction admin.");
|
|
|
|
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:29 +01:00
|
|
|
if (you.getRole() == Role.ADMIN)
|
|
|
|
{
|
|
|
|
msg("<b>The target player is a faction admin. Demote them first.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
if (you.getRole() == Role.MODERATOR)
|
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
// Revoke
|
2011-03-22 17:20:21 +01:00
|
|
|
you.setRole(Role.NORMAL);
|
2012-01-18 13:01:29 +01:00
|
|
|
targetFaction.msg("%s<i> is no longer moderator in your faction.", you.describeTo(targetFaction, true));
|
|
|
|
msg("<i>You have removed moderator 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-03-22 17:20:21 +01:00
|
|
|
you.setRole(Role.MODERATOR);
|
2012-01-18 13:01:29 +01:00
|
|
|
targetFaction.msg("%s<i> was promoted to moderator in your faction.", you.describeTo(targetFaction, true));
|
|
|
|
msg("<i>You have promoted %s<i> to moderator.", you.describeTo(fme, true));
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|