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

52 lines
1.5 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.Rel;
2013-04-16 11:05:49 +02:00
import com.massivecraft.factions.cmd.arg.ARFPlayer;
import com.massivecraft.factions.cmd.req.ReqRoleIsAtLeast;
import com.massivecraft.factions.integration.SpoutFeatures;
2013-04-16 11:05:49 +02:00
import com.massivecraft.mcore.cmd.arg.ARString;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
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
{
2013-04-16 10:11:59 +02:00
this.addAliases("title");
this.addRequiredArg("player");
this.addOptionalArg("title", "");
2013-04-16 10:11:59 +02:00
this.addRequirements(ReqHasPerm.get(Perm.TITLE.node));
this.addRequirements(ReqRoleIsAtLeast.get(Rel.OFFICER));
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
2013-04-16 11:05:49 +02:00
FPlayer you = this.arg(0, ARFPlayer.getStartAny());
2011-10-09 18:35:39 +02:00
if (you == null) return;
2013-04-16 11:05:49 +02:00
String title = this.argConcatFrom(1, ARString.get(), "");
if (title == null) return;
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);
}
}
}