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 ;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Faction ;
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-22 15:45:41 +01:00
2011-10-09 20:10:19 +02:00
public class CmdKick extends FCommand
2011-10-09 14:53:38 +02:00
{
2011-03-22 15:45:41 +01:00
2011-10-09 20:10:19 +02:00
public CmdKick ( )
2011-10-09 14:53:38 +02:00
{
super ( ) ;
this . aliases . add ( " kick " ) ;
2011-03-22 18:48:09 +01:00
2011-10-09 14:53:38 +02:00
this . requiredArgs . add ( " player name " ) ;
//this.optionalArgs.put("", "");
2011-03-22 15:45:41 +01:00
2011-10-09 21:57:43 +02:00
this . permission = Permission . KICK . node ;
this . disableOnLock = false ;
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 ( )
{
FPlayer you = this . argAsBestFPlayerMatch ( 0 ) ;
if ( you = = null ) return ;
2011-03-22 15:45:41 +01:00
2011-10-09 14:53:38 +02:00
if ( fme = = you )
{
2011-10-10 13:40:24 +02:00
msg ( " <b>You cannot kick yourself. " ) ;
2011-10-10 14:21:22 +02:00
msg ( " <i>You might want to: %s " , p . cmdBase . cmdLeave . getUseageTemplate ( false ) ) ;
2011-03-22 15:45:41 +01:00
return ;
}
2011-07-09 05:06:55 +02:00
Faction yourFaction = you . getFaction ( ) ;
// players with admin-level "disband" permission can bypass these requirements
2011-10-09 21:57:43 +02:00
if ( ! Permission . KICK_ANY . has ( sender ) )
2011-10-09 14:53:38 +02:00
{
if ( yourFaction ! = myFaction )
{
2011-10-21 19:20:33 +02:00
msg ( " %s<b> is not a member of %s " , you . describeTo ( fme , true ) , myFaction . describeTo ( fme ) ) ;
2011-07-09 05:06:55 +02:00
return ;
}
2011-10-09 14:53:38 +02:00
if ( you . getRole ( ) . value > = fme . getRole ( ) . value )
{
// TODO add more informative messages.
2011-10-10 13:40:24 +02:00
msg ( " <b>Your rank is too low to kick this player. " ) ;
2011-07-09 05:06:55 +02:00
return ;
}
2011-10-15 19:46:09 +02:00
if ( ! Conf . canLeaveWithNegativePower & & you . getPower ( ) < 0 )
2011-10-09 14:53:38 +02:00
{
2011-10-10 13:40:24 +02:00
msg ( " <b>You cannot kick that member until their power is positive. " ) ;
2011-07-09 05:06:55 +02:00
return ;
}
2011-03-22 15:45:41 +01:00
}
2011-07-09 05:06:55 +02:00
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 . econCostKick , " to kick someone from the faction " , " for kicking someone from the 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
2011-10-21 19:20:33 +02:00
yourFaction . msg ( " %s<i> kicked %s<i> from the faction! :O " , fme . describeTo ( yourFaction , true ) , you . describeTo ( yourFaction , true ) ) ;
you . msg ( " %s<i> kicked you from %s<i>! :O " , fme . describeTo ( you , true ) , yourFaction . describeTo ( you ) ) ;
2011-10-09 14:53:38 +02:00
if ( yourFaction ! = myFaction )
{
2011-10-21 19:20:33 +02:00
fme . msg ( " <i>You kicked %s<i> from the faction %s<i>! " , you . describeTo ( fme ) , yourFaction . describeTo ( fme ) ) ;
2011-05-29 23:41:50 +02:00
}
2011-07-09 05:06:55 +02:00
yourFaction . deinvite ( you ) ;
2011-03-22 15:45:41 +01:00
you . resetFactionData ( ) ;
2011-07-09 05:06:55 +02:00
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 . logFactionKick )
P . p . log ( fme . getName ( ) + " kicked " + you . getName ( ) + " from the faction: " + yourFaction . getTag ( ) ) ;
2011-10-09 14:53:38 +02:00
if ( yourFaction . getFPlayers ( ) . isEmpty ( ) & & ! yourFaction . isPermanent ( ) )
{
2011-07-09 05:06:55 +02:00
// Remove this faction
2011-10-09 14:53:38 +02:00
for ( FPlayer fplayer : FPlayers . i . getOnline ( ) )
{
2011-10-10 13:40:24 +02:00
fplayer . msg ( " The faction %s<i> was disbanded. " , yourFaction . getTag ( fplayer ) ) ;
2011-07-09 05:06:55 +02:00
}
2011-10-09 14:53:38 +02:00
yourFaction . detach ( ) ;
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 . logFactionDisband )
P . p . log ( " The faction " + yourFaction . getTag ( ) + " ( " + yourFaction . getId ( ) + " ) was disbanded since the last player was kicked by " + ( senderIsConsole ? " console command " : fme . getName ( ) ) + " . " ) ;
2011-07-09 05:06:55 +02:00
}
2011-03-22 15:45:41 +01:00
}
}