2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd ;
2011-03-19 13:00:03 +01:00
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Conf ;
import com.massivecraft.factions.Faction ;
2012-02-26 19:29:46 +01:00
import com.massivecraft.factions.FPlayer ;
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
import com.massivecraft.factions.P ;
2011-10-09 14:53:38 +02:00
import com.massivecraft.factions.struct.Permission ;
2011-03-19 13:00:03 +01:00
2011-10-09 20:10:19 +02:00
public class CmdJoin extends FCommand
2011-10-09 14:53:38 +02:00
{
2011-10-09 20:10:19 +02:00
public CmdJoin ( )
2011-10-09 14:53:38 +02:00
{
super ( ) ;
this . aliases . add ( " join " ) ;
this . requiredArgs . add ( " faction name " ) ;
2012-02-26 19:29:46 +01:00
this . optionalArgs . put ( " player " , " you " ) ;
2011-03-22 18:48:09 +01:00
2011-10-09 21:57:43 +02:00
this . permission = Permission . JOIN . node ;
this . disableOnLock = true ;
2011-03-19 13:00:03 +01:00
2011-10-09 14:53:38 +02:00
senderMustBePlayer = true ;
senderMustBeMember = false ;
senderMustBeModerator = false ;
senderMustBeAdmin = false ;
2011-03-19 13:00:03 +01:00
}
2011-06-21 07:38:31 +02:00
@Override
2011-10-09 14:53:38 +02:00
public void perform ( )
{
Faction faction = this . argAsFaction ( 0 ) ;
if ( faction = = null ) return ;
2011-03-19 13:00:03 +01:00
2012-02-26 19:29:46 +01:00
FPlayer fplayer = this . argAsBestFPlayerMatch ( 1 , fme , false ) ;
boolean samePlayer = fplayer = = fme ;
if ( ! samePlayer & & ! Permission . JOIN_OTHERS . has ( sender , false ) )
{
msg ( " <b>You do not have permission to move other players into a faction. " ) ;
return ;
}
2011-10-09 14:53:38 +02:00
if ( ! faction . isNormal ( ) )
{
2012-02-26 19:29:46 +01:00
msg ( " <b>Players may only join normal factions. This is a system faction. " ) ;
2011-03-23 17:39:56 +01:00
return ;
}
2012-02-24 13:30:18 +01:00
2012-02-26 19:29:46 +01:00
if ( faction = = fplayer . getFaction ( ) )
2011-10-09 14:53:38 +02:00
{
2012-02-26 19:29:46 +01:00
msg ( " <b>%s %s already a member of %s " , fplayer . describeTo ( fme , true ) , ( samePlayer ? " are " : " is " ) , faction . getTag ( fme ) ) ;
2011-03-19 13:00:03 +01:00
return ;
}
2012-02-24 13:30:18 +01:00
if ( Conf . factionMemberLimit > 0 & & faction . getFPlayers ( ) . size ( ) > = Conf . factionMemberLimit )
{
2012-02-27 03:49:50 +01:00
msg ( " <b>The faction %s is at the limit of %d members, so %s cannot currently join. " , faction . getTag ( fme ) , Conf . factionMemberLimit , fplayer . describeTo ( fme , false ) ) ;
2012-02-24 13:30:18 +01:00
return ;
}
2012-02-26 19:29:46 +01:00
if ( fplayer . hasFaction ( ) )
2011-10-09 14:53:38 +02:00
{
2012-02-26 19:29:46 +01:00
msg ( " <b>%s must leave %s current faction first. " , fplayer . describeTo ( fme , true ) , ( samePlayer ? " your " : " their " ) ) ;
2011-03-19 13:00:03 +01:00
return ;
}
2012-02-24 13:30:18 +01:00
2012-02-26 19:29:46 +01:00
if ( ! Conf . canLeaveWithNegativePower & & fplayer . getPower ( ) < 0 )
2011-10-09 14:53:38 +02:00
{
2012-02-26 19:29:46 +01:00
msg ( " <b>%s cannot join a faction with a negative power level. " , fplayer . describeTo ( fme , true ) ) ;
2011-05-29 23:41:50 +02:00
return ;
}
2012-02-24 13:30:18 +01:00
2012-02-26 19:29:46 +01:00
if ( ! ( faction . getOpen ( ) | | faction . isInvited ( fplayer ) | | fme . isAdminBypassing ( ) | | Permission . JOIN_ANY . has ( sender , false ) ) )
2011-10-09 14:53:38 +02:00
{
2011-10-10 13:40:24 +02:00
msg ( " <i>This faction requires invitation. " ) ;
2012-02-26 19:29:46 +01:00
if ( samePlayer )
faction . msg ( " %s<i> tried to join your faction. " , fplayer . describeTo ( faction , true ) ) ;
2011-03-19 13:00:03 +01:00
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
// if economy is enabled, they're not on the bypass list, and this command has a cost set, make 'em pay
2012-02-26 19:29:46 +01:00
if ( samePlayer & & ! payForCommand ( Conf . econCostJoin , " to join a faction " , " for joining a faction " ) ) 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
2012-02-26 19:29:46 +01:00
fme . msg ( " <i>%s successfully joined %s. " , fplayer . describeTo ( fme , true ) , faction . getTag ( fme ) ) ;
if ( ! samePlayer )
fplayer . msg ( " <i>%s moved you into the faction %s. " , fme . describeTo ( fplayer , true ) , faction . getTag ( fplayer ) ) ;
faction . msg ( " <i>%s joined your faction. " , fplayer . describeTo ( faction , true ) ) ;
2012-02-24 13:30:18 +01:00
2012-02-26 19:29:46 +01:00
fplayer . resetFactionData ( ) ;
fplayer . setFaction ( faction ) ;
faction . deinvite ( fplayer ) ;
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
if ( Conf . logFactionJoin )
2012-02-26 19:29:46 +01:00
{
if ( samePlayer )
P . p . log ( " %s joined the faction %s. " , fplayer . getName ( ) , faction . getTag ( ) ) ;
else
P . p . log ( " %s moved the player %s into the faction %s. " , fme . getName ( ) , fplayer . getName ( ) , faction . getTag ( ) ) ;
}
2011-03-19 13:00:03 +01:00
}
}