2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.Conf;
|
|
|
|
import com.massivecraft.factions.FPlayer;
|
2019-12-24 15:19:43 +01:00
|
|
|
import com.massivecraft.factions.FactionsPlugin;
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2014-12-08 00:12:52 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.zcore.util.TextUtil;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdTitle extends FCommand {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
2019-12-02 19:55:38 +01:00
|
|
|
/**
|
|
|
|
* @author FactionsUUID Team
|
|
|
|
*/
|
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
public CmdTitle() {
|
2020-01-02 02:59:31 +01:00
|
|
|
this.aliases.addAll(Aliases.title);
|
2019-09-15 11:19:06 +02:00
|
|
|
this.requiredArgs.add("player name");
|
|
|
|
this.optionalArgs.put("title", "");
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.TITLE)
|
|
|
|
.playerOnly()
|
|
|
|
.build();
|
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
@Override
|
|
|
|
public void perform(CommandContext context) {
|
2019-12-24 15:19:43 +01:00
|
|
|
FactionsPlugin.getInstance().getServer().getScheduler().runTaskAsynchronously(FactionsPlugin.instance, () -> {
|
|
|
|
FPlayer you = context.argAsBestFPlayerMatch(0);
|
|
|
|
if (you == null) return;
|
|
|
|
context.args.remove(0);
|
|
|
|
String title = TextUtil.implode(context.args, " ");
|
|
|
|
if (!context.canIAdministerYou(context.fPlayer, you)) return;
|
|
|
|
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
|
|
|
|
if (!context.payForCommand(Conf.econCostTitle, TL.COMMAND_TITLE_TOCHANGE, TL.COMMAND_TITLE_FORCHANGE))
|
|
|
|
return;
|
|
|
|
you.setTitle(context.sender, title);
|
|
|
|
// Inform
|
|
|
|
context.faction.msg(TL.COMMAND_TITLE_CHANGED, context.fPlayer.describeTo(context.faction, true), you.describeTo(context.faction, true));
|
|
|
|
});
|
2019-09-15 11:19:06 +02:00
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_TITLE_DESCRIPTION;
|
|
|
|
}
|
2015-01-22 00:58:33 +01:00
|
|
|
|
2019-09-14 21:13:01 +02:00
|
|
|
}
|