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 ;
2011-10-09 14:53:38 +02:00
import com.massivecraft.factions.FPlayers ;
import com.massivecraft.factions.struct.Permission ;
import com.massivecraft.factions.zcore.util.TextUtil ;
2011-03-22 15:45:41 +01:00
2011-10-09 20:10:19 +02:00
public class CmdDescription extends FCommand
2011-10-09 14:53:38 +02:00
{
2011-10-09 20:10:19 +02:00
public CmdDescription ( )
2011-10-09 14:53:38 +02:00
{
super ( ) ;
this . aliases . add ( " desc " ) ;
this . requiredArgs . add ( " desc " ) ;
2011-10-10 14:21:22 +02:00
this . errorOnToManyArgs = false ;
2011-10-09 14:53:38 +02:00
//this.optionalArgs
2011-03-22 18:48:09 +01:00
2011-10-09 21:57:43 +02:00
this . permission = Permission . DESCRIPTION . node ;
this . disableOnLock = true ;
2011-03-22 15:45:41 +01:00
2011-10-09 14:53:38 +02:00
senderMustBePlayer = true ;
senderMustBeMember = false ;
senderMustBeModerator = true ;
senderMustBeAdmin = false ;
2011-03-22 15:45:41 +01:00
}
2011-06-21 07:38:31 +02:00
@Override
2011-10-09 14:53:38 +02:00
public void perform ( )
{
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2011-10-12 18:48:47 +02:00
if ( ! payForCommand ( Conf . econCostDesc , " to change faction description " , " for changing faction description " ) ) return ;
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
2011-12-18 08:25:42 +01:00
myFaction . setDescription ( TextUtil . implode ( args , " " ) . replaceAll ( " (&([a-f0-9])) " , " & $2 " ) ) ; // since "&" color tags seem to work even through plain old FPlayer.sendMessage() for some reason, we need to break those up
2012-11-10 01:22:41 +01:00
if ( ! Conf . broadcastDescriptionChanges )
{
2012-12-01 03:14:30 +01:00
fme . msg ( " You have changed the description for <h>%s<i> to: " , myFaction . describeTo ( fme ) ) ;
fme . sendMessage ( myFaction . getDescription ( ) ) ;
2012-11-10 01:22:41 +01:00
return ;
}
2011-03-22 15:45:41 +01:00
// Broadcast the description to everyone
2011-10-09 14:53:38 +02:00
for ( FPlayer fplayer : FPlayers . i . getOnline ( ) )
{
2011-10-21 19:20:33 +02:00
fplayer . msg ( " <i>The faction %s<i> changed their description to: " , myFaction . describeTo ( fplayer ) ) ;
2011-12-18 08:25:42 +01:00
fplayer . sendMessage ( myFaction . getDescription ( ) ) ; // players can inject "&" or "`" or "<i>" or whatever in their description; &k is particularly interesting looking
2011-03-22 15:45:41 +01:00
}
}
}