2011-10-13 16:07:07 +02:00
package com.massivecraft.factions.cmd ;
2013-04-09 12:56:29 +02:00
import com.massivecraft.factions.Perm ;
2014-09-17 13:29:58 +02:00
import com.massivecraft.factions.cmd.arg.ARMPlayer ;
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 ;
2014-09-17 13:17:33 +02:00
import com.massivecraft.factions.entity.MPlayer ;
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 ;
2013-04-09 13:00:09 +02:00
import com.massivecraft.factions.Factions ;
2011-10-13 16:07:07 +02:00
import com.massivecraft.factions.integration.Econ ;
2015-02-12 12:00:55 +01:00
import com.massivecraft.massivecore.MassiveException ;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.cmd.arg.ARDouble ;
import com.massivecraft.massivecore.cmd.req.ReqHasPerm ;
import com.massivecraft.massivecore.money.Money ;
import com.massivecraft.massivecore.util.Txt ;
2011-10-13 16:07:07 +02:00
2011-10-23 20:14:51 +02:00
import org.bukkit.ChatColor ;
2011-10-13 16:07:07 +02:00
2014-09-18 13:41:20 +02:00
public class CmdFactionsMoneyTransferFp extends FactionsCommand
2011-10-13 16:07:07 +02:00
{
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
2013-04-10 13:12:22 +02:00
public CmdFactionsMoneyTransferFp ( )
2011-10-13 16:07:07 +02:00
{
2013-11-11 09:31:04 +01:00
// Aliases
2013-04-16 10:11:59 +02:00
this . addAliases ( " fp " ) ;
2013-11-11 09:31:04 +01:00
// Args
2013-04-16 10:30:21 +02:00
this . addRequiredArg ( " amount " ) ;
this . addRequiredArg ( " faction " ) ;
this . addRequiredArg ( " player " ) ;
2013-11-11 09:31:04 +01:00
// Requirements
2013-04-16 10:11:59 +02:00
this . addRequirements ( ReqHasPerm . get ( Perm . MONEY_F2P . node ) ) ;
2013-04-16 12:04:12 +02:00
this . addRequirements ( ReqBankCommandsEnabled . get ( ) ) ;
2011-10-13 16:07:07 +02:00
}
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
2011-10-13 16:07:07 +02:00
@Override
2015-02-12 12:00:55 +01:00
public void perform ( ) throws MassiveException
2011-10-13 16:07:07 +02:00
{
2013-04-16 11:05:49 +02:00
Double amount = this . arg ( 0 , ARDouble . get ( ) ) ;
2014-09-17 13:17:33 +02:00
Faction from = this . arg ( 1 , ARFaction . get ( ) ) ;
2014-09-17 13:29:58 +02:00
MPlayer to = this . arg ( 2 , ARMPlayer . getAny ( ) ) ;
2011-10-13 16:07:07 +02:00
2014-09-18 13:41:20 +02:00
boolean success = Econ . transferMoney ( msender , from , to , amount ) ;
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
2013-04-22 10:05:03 +02:00
if ( success & & MConf . get ( ) . logMoneyTransactions )
2013-04-22 09:37:53 +02:00
{
2014-09-18 13:41:20 +02:00
Factions . get ( ) . log ( ChatColor . stripColor ( Txt . parse ( " %s transferred %s from the faction \" %s \" to the player \" %s \" " , msender . getName ( ) , Money . format ( amount ) , from . describeTo ( null ) , to . describeTo ( null ) ) ) ) ;
2013-04-22 09:37:53 +02:00
}
2011-10-13 16:07:07 +02:00
}
2013-11-11 09:31:04 +01:00
2011-10-13 16:07:07 +02:00
}