2011-07-18 22:06:02 +02:00
|
|
|
package com.massivecraft.factions.commands;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
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 14:53:38 +02:00
|
|
|
this.permission = Permission.COMMAND_MOD.node;
|
|
|
|
|
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeAdmin = true;
|
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()
|
|
|
|
{
|
|
|
|
if( isLocked() )
|
|
|
|
{
|
2011-05-08 17:16:43 +02:00
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
FPlayer you = this.argAsBestFPlayerMatch(0);
|
|
|
|
if (you == null) return;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
if (you.getFaction() != myFaction)
|
|
|
|
{
|
|
|
|
sendMessageParsed("%s<b> is not a member in your faction.", you.getNameAndRelevant(fme));
|
2011-03-22 15:45:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
if (you == fme)
|
|
|
|
{
|
|
|
|
sendMessageParsed("<b>The target player musn't be yourself.");
|
2011-03-22 15:45:41 +01:00
|
|
|
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);
|
2011-10-09 14:53:38 +02:00
|
|
|
myFaction.sendMessageParsed("%s<i> is no longer moderator in your faction.", you.getNameAndRelevant(myFaction));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
// Give
|
2011-03-22 17:20:21 +01:00
|
|
|
you.setRole(Role.MODERATOR);
|
2011-10-09 14:53:38 +02:00
|
|
|
myFaction.sendMessageParsed("%s<i> was promoted to moderator in your faction.", you.getNameAndRelevant(myFaction));
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|