Saber-Factions/src/com/massivecraft/factions/commands/CmdTitle.java

58 lines
1.3 KiB
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.commands;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.FPlayer;
import com.massivecraft.factions.integration.SpoutFeatures;
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.zcore.util.TextUtil;
2011-10-09 20:10:19 +02:00
public class CmdTitle extends FCommand
2011-10-09 18:35:39 +02:00
{
2011-10-09 20:10:19 +02:00
public CmdTitle()
2011-10-09 18:35:39 +02:00
{
this.aliases.add("title");
2011-10-09 18:35:39 +02:00
this.requiredArgs.add("player name");
this.optionalArgs.put("title", "");
2011-10-09 18:35:39 +02:00
this.permission = Permission.COMMAND_TITLE.node;
2011-10-09 18:35:39 +02:00
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = true;
senderMustBeAdmin = false;
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
if( isLocked() )
{
sendLockMessage();
return;
}
2011-10-09 18:35:39 +02:00
FPlayer you = this.argAsBestFPlayerMatch(0);
if (you == null) return;
2011-10-09 18:35:39 +02:00
args.remove(0);
String title = TextUtil.implode(args, " ");
2011-10-09 18:35:39 +02:00
if ( ! canIAdministerYou(fme, you)) return;
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2011-10-09 18:35:39 +02:00
if ( ! payForCommand(Conf.econCostTitle)) return;
you.setTitle(title);
// Inform
2011-10-09 18:35:39 +02:00
myFaction.sendMessageParsed("%s<i> changed a title: %s", fme.getNameAndRelevant(myFaction), you.getNameAndRelevant(myFaction));
2011-10-09 18:35:39 +02:00
if (Conf.spoutFactionTitlesOverNames)
{
SpoutFeatures.updateAppearances(me);
}
}
}