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

40 lines
1.2 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
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer;
import com.massivecraft.factions.Perm;
import com.massivecraft.factions.iface.EconomyParticipator;
2013-04-09 13:00:09 +02:00
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.integration.Econ;
2013-04-16 10:11:59 +02:00
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
2013-04-10 10:32:04 +02:00
import com.massivecraft.mcore.util.Txt;
2011-09-24 03:22:53 +02:00
import org.bukkit.ChatColor;
2013-04-10 13:12:22 +02:00
public class CmdFactionsMoneyWithdraw extends FCommand
{
2013-04-10 13:12:22 +02:00
public CmdFactionsMoneyWithdraw()
{
2013-04-16 10:11:59 +02:00
this.addAliases("w", "withdraw");
2011-09-24 03:22:53 +02:00
this.addRequiredArg("amount");
this.addOptionalArg("faction", "you");
2013-04-16 10:11:59 +02:00
this.addRequirements(ReqHasPerm.get(Perm.MONEY_WITHDRAW.node));
this.setHelpShort("withdraw money");
2011-09-24 03:22:53 +02:00
}
@Override
public void perform()
{
double amount = this.argAsDouble(0, 0d);
EconomyParticipator faction = this.argAsFaction(1, myFaction);
if (faction == null) return;
boolean success = Econ.transferMoney(fme, faction, fme, amount);
2013-04-09 13:15:25 +02:00
if (success && ConfServer.logMoneyTransactions)
2013-04-10 10:32:04 +02:00
Factions.get().log(ChatColor.stripColor(Txt.parse("%s withdrew %s from the faction bank: %s", fme.getName(), Econ.moneyString(amount), faction.describeTo(null))));
2011-09-24 03:22:53 +02:00
}
}