46 lines
1.4 KiB
Java
46 lines
1.4 KiB
Java
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 com.massivecraft.factions.zcore.util.TL;
|
|
import org.bukkit.ChatColor;
|
|
|
|
|
|
public class CmdMoneyDeposit extends FCommand {
|
|
|
|
public CmdMoneyDeposit() {
|
|
super();
|
|
this.aliases.add("d");
|
|
this.aliases.add("deposit");
|
|
|
|
this.requiredArgs.add("amount");
|
|
this.optionalArgs.put("faction", "yours");
|
|
|
|
this.permission = Permission.MONEY_DEPOSIT.node;
|
|
this.setHelpShort(TL.COMMAND_MONEYDEPOSIT_SHORT.toString());
|
|
|
|
senderMustBePlayer = true;
|
|
senderMustBeMember = false;
|
|
senderMustBeModerator = false;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@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, fme, faction, amount);
|
|
|
|
if (success && Conf.logMoneyTransactions) {
|
|
P.p.log(ChatColor.stripColor(P.p.txt.parse(TL.COMMAND_MONEYDEPOSIT_DEPOSITED.toString(), fme.getName(), Econ.moneyString(amount), faction.describeTo(null))));
|
|
}
|
|
}
|
|
|
|
}
|