2011-07-18 22:06:02 +02:00
package com.massivecraft.factions.commands ;
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 ;
import com.massivecraft.factions.Faction ;
2011-10-08 22:03:44 +02:00
import com.massivecraft.factions.P ;
2011-03-22 15:45:41 +01:00
public class FCommandKick extends FBaseCommand {
public FCommandKick ( ) {
2011-03-22 18:48:09 +01:00
aliases . add ( " kick " ) ;
2011-03-22 15:45:41 +01:00
requiredParameters . add ( " player name " ) ;
helpDescription = " Kick a player from the faction " ;
}
2011-06-21 07:38:31 +02:00
@Override
2011-03-22 15:45:41 +01:00
public void perform ( ) {
2011-05-08 17:16:43 +02:00
if ( isLocked ( ) ) {
sendLockMessage ( ) ;
return ;
}
2011-03-22 15:45:41 +01:00
String playerName = parameters . get ( 0 ) ;
FPlayer you = findFPlayer ( playerName , false ) ;
if ( you = = null ) {
return ;
}
if ( me = = you ) {
sendMessage ( " You cannot kick yourself. " ) ;
2011-04-08 16:03:04 +02:00
sendMessage ( " You might want to: " + new FCommandLeave ( ) . getUseageTemplate ( false ) ) ;
2011-03-22 15:45:41 +01:00
return ;
}
2011-07-09 05:06:55 +02:00
Faction yourFaction = you . getFaction ( ) ;
Faction myFaction = me . getFaction ( ) ;
// players with admin-level "disband" permission can bypass these requirements
2011-10-08 22:03:44 +02:00
if ( ! P . hasPermDisband ( sender ) ) {
2011-07-09 05:06:55 +02:00
if ( yourFaction ! = myFaction ) {
sendMessage ( you . getNameAndRelevant ( me ) + Conf . colorSystem + " is not a member of " + myFaction . getTag ( me ) ) ;
return ;
}
if ( you . getRole ( ) . value > = me . getRole ( ) . value ) { // TODO add more informative messages.
sendMessage ( " Your rank is too low to kick this player. " ) ;
return ;
}
if ( ! Conf . CanLeaveWithNegativePower & & you . getPower ( ) < 0 ) {
sendMessage ( " You cannot kick that member until their power is positive. " ) ;
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
if ( ! payForCommand ( Conf . econCostKick ) ) {
return ;
}
2011-07-09 05:06:55 +02:00
yourFaction . sendMessage ( me . getNameAndRelevant ( yourFaction ) + Conf . colorSystem + " kicked " + you . getNameAndRelevant ( yourFaction ) + Conf . colorSystem + " from the faction! :O " ) ;
you . sendMessage ( me . getNameAndRelevant ( you ) + Conf . colorSystem + " kicked you from " + yourFaction . getTag ( you ) + Conf . colorSystem + " ! :O " ) ;
if ( yourFaction ! = myFaction ) {
me . sendMessage ( Conf . colorSystem + " You kicked " + you . getNameAndRelevant ( myFaction ) + Conf . colorSystem + " from the faction " + yourFaction . getTag ( me ) + Conf . colorSystem + " ! " ) ;
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
2011-09-13 20:14:09 +02:00
if ( yourFaction . getFPlayers ( ) . isEmpty ( ) & & ! yourFaction . isPermanent ( ) ) {
2011-07-09 05:06:55 +02:00
// Remove this faction
for ( FPlayer fplayer : FPlayer . getAllOnline ( ) ) {
fplayer . sendMessage ( " The faction " + yourFaction . getTag ( fplayer ) + Conf . colorSystem + " was disbanded. " ) ;
}
Faction . delete ( yourFaction . getId ( ) ) ;
}
2011-03-22 15:45:41 +01:00
}
}