2011-04-08 15:51:07 +02:00
|
|
|
package org.mcteam.factions.commands;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-04-08 15:51:07 +02:00
|
|
|
import org.mcteam.factions.Conf;
|
|
|
|
import org.mcteam.factions.FPlayer;
|
|
|
|
import org.mcteam.factions.Faction;
|
|
|
|
import org.mcteam.factions.util.TextUtil;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
public class FCommandTitle extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandTitle() {
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases.add("title");
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
requiredParameters.add("player name");
|
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
optionalParameters.add("title");
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
helpDescription = "Set or remove a players title";
|
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-03-22 15:45:41 +01:00
|
|
|
public void perform() {
|
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-08 17:16:43 +02:00
|
|
|
if( isLocked() ) {
|
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
String playerName = parameters.get(0);
|
|
|
|
parameters.remove(0);
|
|
|
|
String title = TextUtil.implode(parameters);
|
|
|
|
|
|
|
|
FPlayer you = findFPlayer(playerName, false);
|
|
|
|
if (you == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! canIAdministerYou(me, you)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
you.setTitle(title);
|
|
|
|
|
|
|
|
// Inform
|
|
|
|
Faction myFaction = me.getFaction();
|
|
|
|
myFaction.sendMessage(me.getNameAndRelevant(myFaction)+Conf.colorSystem+" changed a title: "+you.getNameAndRelevant(myFaction));
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|