51 lines
1.1 KiB
Java
51 lines
1.1 KiB
Java
|
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.util.TextUtil;
|
||
|
|
||
|
public class FCommandTitle extends FBaseCommand {
|
||
|
|
||
|
public FCommandTitle() {
|
||
|
requiredParameters = new ArrayList<String>();
|
||
|
optionalParameters = new ArrayList<String>();
|
||
|
requiredParameters.add("player name");
|
||
|
optionalParameters.add("title");
|
||
|
|
||
|
permissions = "";
|
||
|
|
||
|
senderMustBePlayer = true;
|
||
|
|
||
|
helpDescription = "Set or remove a players title";
|
||
|
}
|
||
|
|
||
|
public void perform() {
|
||
|
if ( ! assertHasFaction()) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
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));
|
||
|
}
|
||
|
|
||
|
}
|