Saber-Factions/src/com/massivecraft/factions/commands/CmdDescription.java

53 lines
1.2 KiB
Java
Raw Normal View History

2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.commands;
2011-07-18 22:06:02 +02:00
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;
2011-10-09 20:10:19 +02:00
public class CmdDescription extends FCommand
{
2011-10-09 20:10:19 +02:00
public CmdDescription()
{
super();
this.aliases.add("desc");
this.requiredArgs.add("desc");
//this.optionalArgs
this.permission = Permission.COMMAND_DESCRIPTION.node;
senderMustBePlayer = true;
senderMustBeMember = false;
senderMustBeModerator = true;
senderMustBeAdmin = false;
}
@Override
public void perform()
{
if( isLocked() )
{
sendLockMessage();
return;
}
// 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;
}
2011-10-09 18:35:39 +02:00
myFaction.setDescription(TextUtil.implode(args, " "));
2011-03-22 22:31:04 +01:00
// Broadcast the description to everyone
for (FPlayer fplayer : FPlayers.i.getOnline())
{
2011-10-09 18:35:39 +02:00
fplayer.sendMessageParsed("The faction "+fplayer.getRelationColor(fme)+myFaction.getTag()+"<i> changed their description to:");
fplayer.sendMessageParsed("<i>"+myFaction.getDescription());
}
}
}