Factions/src/com/massivecraft/factions/cmd/CmdFactionsMoneyWithdraw.java

54 lines
1.6 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-09-24 03:22:53 +02:00
2017-02-10 16:38:36 +01:00
import org.bukkit.ChatColor;
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.cmd.req.ReqBankCommandsEnabled;
import com.massivecraft.factions.cmd.type.TypeFaction;
2013-04-22 09:37:53 +02:00
import com.massivecraft.factions.entity.Faction;
import com.massivecraft.factions.entity.MConf;
2017-02-10 16:38:36 +01:00
import com.massivecraft.factions.entity.MPlayer;
import com.massivecraft.factions.integration.Econ;
2015-02-12 12:00:55 +01:00
import com.massivecraft.massivecore.MassiveException;
2015-11-06 02:10:29 +01:00
import com.massivecraft.massivecore.command.type.primitive.TypeDouble;
2014-06-04 14:02:23 +02:00
import com.massivecraft.massivecore.money.Money;
import com.massivecraft.massivecore.util.Txt;
2011-09-24 03:22:53 +02:00
2014-09-18 13:41:20 +02:00
public class CmdFactionsMoneyWithdraw extends FactionsCommand
{
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
2013-04-10 13:12:22 +02:00
public CmdFactionsMoneyWithdraw()
{
// Parameters
this.addParameter(TypeDouble.get(), "amount");
this.addParameter(TypeFaction.get(), "faction", "you");
2013-11-11 09:31:04 +01:00
// Requirements
this.addRequirements(ReqBankCommandsEnabled.get());
2011-09-24 03:22:53 +02:00
}
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
2011-09-24 03:22:53 +02:00
@Override
2015-02-12 12:00:55 +01:00
public void perform() throws MassiveException
{
2015-05-06 17:04:35 +02:00
Double amount = this.readArg();
Faction from = this.readArg(msenderFaction);
2013-04-16 11:05:49 +02:00
2014-09-18 13:41:20 +02:00
MPlayer to = msender;
2013-04-22 13:03:21 +02:00
2014-09-18 13:41:20 +02:00
boolean success = Econ.transferMoney(msender, from, to, amount);
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 withdrew %s from the faction bank: %s", msender.getName(), Money.format(amount), from.describeTo(null))));
2013-04-22 09:37:53 +02:00
}
2011-09-24 03:22:53 +02:00
}
2013-11-11 09:31:04 +01:00
2011-09-24 03:22:53 +02:00
}