2011-10-13 14:41:07 +02:00
package com.massivecraft.factions.cmd ;
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer ;
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-22 09:37:53 +02:00
import com.massivecraft.factions.entity.Faction ;
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-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 ;
Faction faction = this . arg ( 1 , ARFaction . get ( ) , myFaction ) ;
2011-10-13 14:41:07 +02:00
if ( faction = = null ) return ;
2013-04-16 11:05:49 +02:00
2012-01-17 02:38:14 +01:00
boolean success = Econ . transferMoney ( fme , fme , faction , amount ) ;
2013-04-22 09:37:53 +02:00
2013-04-09 13:15:25 +02:00
if ( success & & ConfServer . logMoneyTransactions )
2013-04-22 09:37:53 +02:00
{
Factions . get ( ) . log ( ChatColor . stripColor ( Txt . parse ( " %s deposited %s in the faction bank: %s " , fme . getName ( ) , Money . format ( fme , amount ) , faction . describeTo ( null ) ) ) ) ;
}
2011-10-13 14:41:07 +02:00
}
}