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

58 lines
1.9 KiB
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
2017-02-10 16:38:36 +01:00
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;
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;
2017-03-24 13:05:58 +01:00
import org.bukkit.ChatColor;
2019-02-08 16:52:14 +01:00
public class CmdFactionsMoneyTransferF2f extends FactionsCommand
{
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// CONSTRUCT
// -------------------------------------------- //
2019-02-08 16:52:14 +01:00
public CmdFactionsMoneyTransferF2f()
{
2017-02-10 16:38:36 +01:00
// Fields
this.setSetupEnabled(false);
2013-11-11 09:31:04 +01:00
// Aliases
2013-04-16 10:11:59 +02:00
this.addAliases("ff");
2013-11-11 09:31:04 +01:00
// Parameters
this.addParameter(TypeDouble.get(), "amount").setDesc("the amount of money to transfer");
this.addParameter(TypeFaction.get(), "faction").setDesc("the faction to transfer money from");
this.addParameter(TypeFaction.get(), "faction").setDesc("the faction to transfer money to");
2013-11-11 09:31:04 +01:00
// Requirements
this.addRequirements(ReqBankCommandsEnabled.get());
}
2013-11-11 09:31:04 +01:00
// -------------------------------------------- //
// OVERRIDE
// -------------------------------------------- //
@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();
Faction to = this.readArg();
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 transferred %s from the faction \"%s\" to the faction \"%s\"", msender.getName(), Money.format(amount), from.describeTo(null), to.describeTo(null))));
2013-04-22 09:37:53 +02:00
}
}
2013-11-11 09:31:04 +01:00
}