2011-03-22 15:45:41 +01:00
|
|
|
package com.bukkit.mcteam.factions.commands;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
|
|
|
|
import com.bukkit.mcteam.factions.Conf;
|
|
|
|
import com.bukkit.mcteam.factions.FPlayer;
|
|
|
|
import com.bukkit.mcteam.factions.Faction;
|
|
|
|
import com.bukkit.mcteam.factions.struct.Role;
|
|
|
|
|
|
|
|
public class FCommandMod extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandMod() {
|
|
|
|
requiredParameters = new ArrayList<String>();
|
|
|
|
optionalParameters = new ArrayList<String>();
|
|
|
|
requiredParameters.add("player name");
|
|
|
|
|
|
|
|
permissions = "";
|
|
|
|
|
|
|
|
senderMustBePlayer = true;
|
|
|
|
|
|
|
|
helpDescription = "Give or revoke moderator rights";
|
|
|
|
}
|
|
|
|
|
|
|
|
public void perform() {
|
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! assertMinRole(Role.ADMIN)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
String playerName = parameters.get(0);
|
|
|
|
|
|
|
|
FPlayer you = findFPlayer(playerName, false);
|
|
|
|
if (you == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Faction myFaction = me.getFaction();
|
|
|
|
|
|
|
|
if (you.getFaction() != myFaction) {
|
|
|
|
sendMessage(you.getNameAndRelevant(me)+Conf.colorSystem+" is not a member in your faction.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (you == me) {
|
|
|
|
sendMessage("The target player musn't be yourself.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-22 17:20:21 +01: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-03-22 15:45:41 +01:00
|
|
|
myFaction.sendMessage(you.getNameAndRelevant(myFaction)+Conf.colorSystem+" is no longer moderator in your faction.");
|
|
|
|
} else {
|
|
|
|
// Give
|
2011-03-22 17:20:21 +01:00
|
|
|
you.setRole(Role.MODERATOR);
|
2011-03-22 15:45:41 +01:00
|
|
|
myFaction.sendMessage(you.getNameAndRelevant(myFaction)+Conf.colorSystem+" was promoted to moderator in your faction.");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|