ddf054330a
Boards can be toggled with /f sb. Toggles are persistent in a yml file. Also fix some small spelling and format things that were really bugging me.
50 lines
1.5 KiB
Java
50 lines
1.5 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 org.bukkit.ChatColor;
|
|
|
|
|
|
public class CmdMoneyTransferFf extends FCommand {
|
|
|
|
public CmdMoneyTransferFf() {
|
|
this.aliases.add("ff");
|
|
|
|
this.requiredArgs.add("amount");
|
|
this.requiredArgs.add("faction");
|
|
this.requiredArgs.add("faction");
|
|
|
|
//this.optionalArgs.put("", "");
|
|
|
|
this.permission = Permission.MONEY_F2F.node;
|
|
this.setHelpShort("transfer f -> f");
|
|
|
|
senderMustBePlayer = false;
|
|
senderMustBeMember = false;
|
|
senderMustBeModerator = false;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform() {
|
|
double amount = this.argAsDouble(0, 0d);
|
|
EconomyParticipator from = this.argAsFaction(1);
|
|
if (from == null) {
|
|
return;
|
|
}
|
|
EconomyParticipator to = this.argAsFaction(2);
|
|
if (to == null) {
|
|
return;
|
|
}
|
|
|
|
boolean success = Econ.transferMoney(fme, from, to, amount);
|
|
|
|
if (success && Conf.logMoneyTransactions) {
|
|
P.p.log(ChatColor.stripColor(P.p.txt.parse("%s transferred %s from the faction \"%s\" to the faction \"%s\"", fme.getName(), Econ.moneyString(amount), from.describeTo(null), to.describeTo(null))));
|
|
}
|
|
}
|
|
}
|