2011-10-13 14:41:07 +02:00
package com.massivecraft.factions.cmd ;
2013-04-09 13:00:09 +02:00
import com.massivecraft.factions.Factions ;
2013-04-09 12:56:29 +02:00
import com.massivecraft.factions.Perm ;
2013-04-16 11:05:49 +02:00
import com.massivecraft.factions.cmd.arg.ARFaction ;
2013-04-16 12:04:12 +02:00
import com.massivecraft.factions.cmd.req.ReqBankCommandsEnabled ;
2013-04-25 13:25:15 +02:00
import com.massivecraft.factions.cmd.req.ReqFactionsEnabled ;
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.entity.Faction ;
2013-04-22 10:05:03 +02:00
import com.massivecraft.factions.entity.MConf ;
2011-10-13 14:41:07 +02:00
import com.massivecraft.factions.integration.Econ ;
2013-04-16 11:05:49 +02:00
import com.massivecraft.mcore.cmd.arg.ARDouble ;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm ;
2013-04-22 09:37:53 +02:00
import com.massivecraft.mcore.money.Money ;
2013-04-10 10:32:04 +02:00
import com.massivecraft.mcore.util.Txt ;
2011-10-13 14:41:07 +02:00
2011-10-23 20:14:51 +02:00
import org.bukkit.ChatColor ;
2011-10-13 14:41:07 +02:00
2013-04-10 13:12:22 +02:00
public class CmdFactionsMoneyDeposit extends FCommand
2011-10-13 14:41:07 +02:00
{
2013-04-10 13:12:22 +02:00
public CmdFactionsMoneyDeposit ( )
2011-10-13 14:41:07 +02:00
{
2013-04-16 10:11:59 +02:00
this . addAliases ( " d " , " deposit " ) ;
2011-10-13 14:41:07 +02:00
2013-04-16 10:30:21 +02:00
this . addRequiredArg ( " amount " ) ;
this . addOptionalArg ( " faction " , " you " ) ;
2011-10-13 14:41:07 +02:00
2013-04-25 13:25:15 +02:00
this . addRequirements ( ReqFactionsEnabled . get ( ) ) ;
2013-04-16 10:11:59 +02:00
this . addRequirements ( ReqHasPerm . get ( Perm . MONEY_DEPOSIT . node ) ) ;
2013-04-16 12:04:12 +02:00
this . addRequirements ( ReqBankCommandsEnabled . get ( ) ) ;
2011-10-13 14:41:07 +02:00
}
@Override
public void perform ( )
{
2013-04-16 11:05:49 +02:00
Double amount = this . arg ( 0 , ARDouble . get ( ) ) ;
if ( amount = = null ) return ;
2013-04-25 07:29:19 +02:00
Faction faction = this . arg ( 1 , ARFaction . get ( sender ) , usenderFaction ) ;
2011-10-13 14:41:07 +02:00
if ( faction = = null ) return ;
2013-04-16 11:05:49 +02:00
2013-04-25 07:29:19 +02:00
boolean success = Econ . transferMoney ( usender , usender , faction , amount ) ;
2013-04-22 09:37:53 +02:00
2013-04-22 10:05:03 +02:00
if ( success & & MConf . get ( ) . logMoneyTransactions )
2013-04-22 09:37:53 +02:00
{
2013-04-25 07:29:19 +02:00
Factions . get ( ) . log ( ChatColor . stripColor ( Txt . parse ( " %s deposited %s in the faction bank: %s " , usender . getName ( ) , Money . format ( usender , amount ) , faction . describeTo ( null ) ) ) ) ;
2013-04-22 09:37:53 +02:00
}
2011-10-13 14:41:07 +02:00
}
}