48 lines
1.2 KiB
Java
48 lines
1.2 KiB
Java
package com.massivecraft.factions.cmd;
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
import com.massivecraft.factions.FPlayer;
|
|
import com.massivecraft.factions.FPlayers;
|
|
import com.massivecraft.factions.struct.Permission;
|
|
import com.massivecraft.factions.zcore.util.TextUtil;
|
|
|
|
public class CmdDescription extends FCommand
|
|
{
|
|
public CmdDescription()
|
|
{
|
|
super();
|
|
this.aliases.add("desc");
|
|
|
|
this.requiredArgs.add("desc");
|
|
//this.optionalArgs
|
|
|
|
this.permission = Permission.DESCRIPTION.node;
|
|
this.disableOnLock = true;
|
|
|
|
senderMustBePlayer = true;
|
|
senderMustBeMember = false;
|
|
senderMustBeModerator = true;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform()
|
|
{
|
|
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
|
|
if ( ! payForCommand(Conf.econCostDesc))
|
|
{
|
|
return;
|
|
}
|
|
|
|
myFaction.setDescription(TextUtil.implode(args, " "));
|
|
|
|
// Broadcast the description to everyone
|
|
for (FPlayer fplayer : FPlayers.i.getOnline())
|
|
{
|
|
fplayer.sendMessageParsed("<i>The faction "+fplayer.getRelationColor(fme)+myFaction.getTag()+"<i> changed their description to:");
|
|
fplayer.sendMessageParsed("<h>"+myFaction.getDescription());
|
|
}
|
|
}
|
|
|
|
}
|