Saber-Factions/src/main/java/com/massivecraft/factions/cmd/CmdMoneyWithdraw.java

32 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
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.P;
2014-04-04 20:55:21 +02:00
import com.massivecraft.factions.iface.EconomyParticipator;
import com.massivecraft.factions.integration.Econ;
import com.massivecraft.factions.struct.Permission;
import org.bukkit.ChatColor;
2014-04-04 20:55:21 +02:00
public class CmdMoneyWithdraw extends FCommand {
public CmdMoneyWithdraw() {
2014-07-01 21:52:40 +02:00
this.aliases.add("w"); this.aliases.add("withdraw");
2014-04-04 20:55:21 +02:00
2014-07-01 21:52:40 +02:00
this.requiredArgs.add("amount"); this.optionalArgs.put("faction", "yours");
2014-04-04 20:55:21 +02:00
2014-07-01 21:52:40 +02:00
this.permission = Permission.MONEY_WITHDRAW.node; this.setHelpShort("withdraw money");
2014-04-04 20:55:21 +02:00
2014-07-01 21:52:40 +02:00
senderMustBePlayer = true; senderMustBeMember = false; senderMustBeModerator = false; senderMustBeAdmin = false;
2014-04-04 20:55:21 +02:00
}
@Override
public void perform() {
2014-07-01 21:52:40 +02:00
double amount = this.argAsDouble(0, 0d); EconomyParticipator faction = this.argAsFaction(1, myFaction);
if (faction == null) { return; } boolean success = Econ.transferMoney(fme, faction, fme, amount);
2014-04-04 20:55:21 +02:00
2014-07-01 21:49:42 +02:00
if (success && Conf.logMoneyTransactions) {
2014-04-04 20:55:21 +02:00
P.p.log(ChatColor.stripColor(P.p.txt.parse("%s withdrew %s from the faction bank: %s", fme.getName(), Econ.moneyString(amount), faction.describeTo(null))));
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
}
2011-09-24 03:22:53 +02:00
}