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

44 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-10 10:32:04 +02:00
import com.massivecraft.mcore.util.Txt;
2011-09-24 03:22:53 +02:00
import org.bukkit.ChatColor;
public class CmdMoneyWithdraw extends FCommand
{
public CmdMoneyWithdraw()
{
this.aliases.add("w");
this.aliases.add("withdraw");
2011-09-24 03:22:53 +02:00
this.requiredArgs.add("amount");
this.optionalArgs.put("faction", "your");
this.permission = Perm.MONEY_WITHDRAW.node;
this.setHelpShort("withdraw money");
senderMustBePlayer = true;
senderMustBeMember = false;
2011-10-23 17:55:53 +02:00
senderMustBeOfficer = false;
senderMustBeLeader = false;
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
}
}