Factions/src/com/massivecraft/factions/cmd/CmdFactionsTitle.java

49 lines
1.2 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.FPlayer;
import com.massivecraft.factions.Perm;
import com.massivecraft.factions.integration.SpoutFeatures;
2013-04-10 10:45:47 +02:00
import com.massivecraft.mcore.util.Txt;
2013-04-10 13:12:22 +02:00
public class CmdFactionsTitle extends FCommand
2011-10-09 18:35:39 +02:00
{
2013-04-10 13:12:22 +02:00
public CmdFactionsTitle()
2011-10-09 18:35:39 +02:00
{
this.aliases.add("title");
this.requiredArgs.add("player");
2011-10-09 18:35:39 +02:00
this.optionalArgs.put("title", "");
this.permission = Perm.TITLE.node;
2011-10-23 17:55:53 +02:00
senderMustBeOfficer = true;
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
FPlayer you = this.argAsBestFPlayerMatch(0);
if (you == null) return;
2011-10-09 18:35:39 +02:00
args.remove(0);
2013-04-10 10:45:47 +02:00
String title = Txt.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
2013-04-09 13:15:25 +02:00
if ( ! payForCommand(ConfServer.econCostTitle, "to change a players title", "for changing a players title")) return;
you.setTitle(title);
// Inform
2011-10-21 19:20:33 +02:00
myFaction.msg("%s<i> changed a title: %s", fme.describeTo(myFaction, true), you.describeTo(myFaction, true));
2013-04-09 13:15:25 +02:00
if (ConfServer.spoutFactionTitlesOverNames)
2011-10-09 18:35:39 +02:00
{
SpoutFeatures.updateTitle(me, null);
}
}
}