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

45 lines
1.3 KiB
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
import com.massivecraft.factions.Conf;
import com.massivecraft.factions.P;
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 CmdMoneyDeposit extends FCommand {
public CmdMoneyDeposit() {
2014-07-01 22:10:18 +02:00
super();
this.aliases.add("d");
this.aliases.add("deposit");
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_DEPOSIT.node;
this.setHelpShort("deposit money");
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, fme, faction, 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 deposited %s in 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
}
}