71 lines
1.8 KiB
Java
71 lines
1.8 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
import com.massivecraft.factions.Perm;
|
|
import com.massivecraft.factions.cmd.arg.ARMPlayer;
|
|
import com.massivecraft.factions.entity.MPerm;
|
|
import com.massivecraft.factions.entity.MPlayer;
|
|
import com.massivecraft.factions.event.EventFactionsTitleChange;
|
|
import com.massivecraft.massivecore.MassiveException;
|
|
import com.massivecraft.massivecore.cmd.arg.ARString;
|
|
import com.massivecraft.massivecore.cmd.req.ReqHasPerm;
|
|
import com.massivecraft.massivecore.util.Txt;
|
|
|
|
public class CmdFactionsTitle extends FactionsCommand
|
|
{
|
|
// -------------------------------------------- //
|
|
// CONSTRUCT
|
|
// -------------------------------------------- //
|
|
|
|
public CmdFactionsTitle()
|
|
{
|
|
// Aliases
|
|
this.addAliases("title");
|
|
|
|
// Args
|
|
this.addArg(ARMPlayer.getAny(), "player");
|
|
this.addArg(ARString.get(), "title", "", true);
|
|
|
|
// Requirements
|
|
this.addRequirements(ReqHasPerm.get(Perm.TITLE.node));
|
|
}
|
|
|
|
// -------------------------------------------- //
|
|
// OVERRIDE
|
|
// -------------------------------------------- //
|
|
|
|
@Override
|
|
public void perform() throws MassiveException
|
|
{
|
|
// Args
|
|
MPlayer you = this.readArg();
|
|
String newTitle = this.readArg("");
|
|
|
|
newTitle = Txt.parse(newTitle);
|
|
if (!Perm.TITLE_COLOR.has(sender, false))
|
|
{
|
|
newTitle = ChatColor.stripColor(newTitle);
|
|
}
|
|
|
|
// MPerm
|
|
if ( ! MPerm.getPermTitle().has(msender, you.getFaction(), true)) return;
|
|
|
|
// Verify
|
|
if ( ! canIAdministerYou(msender, you)) return;
|
|
|
|
// Event
|
|
EventFactionsTitleChange event = new EventFactionsTitleChange(sender, you, newTitle);
|
|
event.run();
|
|
if (event.isCancelled()) return;
|
|
newTitle = event.getNewTitle();
|
|
|
|
// Apply
|
|
you.setTitle(newTitle);
|
|
|
|
// Inform
|
|
msenderFaction.msg("%s<i> changed a title: %s", msender.describeTo(msenderFaction, true), you.describeTo(msenderFaction, true));
|
|
}
|
|
|
|
}
|