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

48 lines
1.4 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 com.massivecraft.factions.zcore.util.TL;
import org.bukkit.ChatColor;
2014-04-04 20:55:21 +02:00
public class CmdMoneyWithdraw extends FCommand {
2014-04-04 20:55:21 +02:00
public CmdMoneyWithdraw() {
2014-07-01 22:10:18 +02:00
this.aliases.add("w");
this.aliases.add("withdraw");
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
this.requiredArgs.add("amount");
this.optionalArgs.put("faction", "yours");
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
this.permission = Permission.MONEY_WITHDRAW.node;
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +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 22:10:18 +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) {
P.p.log(ChatColor.stripColor(P.p.txt.parse(TL.COMMAND_MONEYWITHDRAW_WITHDRAW.toString(), fme.getName(), Econ.moneyString(amount), faction.describeTo(null))));
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
}
@Override
public TL getUsageTranslation() {
return TL.COMMAND_MONEYWITHDRAW_DESCRIPTION;
}
2011-09-24 03:22:53 +02:00
}