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

50 lines
1.5 KiB
Java
Raw Normal View History

package com.massivecraft.factions.cmd;
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 CmdMoneyTransferFp extends FCommand {
2014-04-04 20:55:21 +02:00
public CmdMoneyTransferFp() {
this.aliases.add("fp");
2014-07-01 22:10:18 +02:00
this.requiredArgs.add("amount");
this.requiredArgs.add("faction");
this.requiredArgs.add("player");
2014-04-04 20:55:21 +02:00
//this.optionalArgs.put("", "");
2014-07-01 22:10:18 +02:00
this.permission = Permission.MONEY_F2P.node;
this.setHelpShort("transfer f -> p");
2014-04-04 20:55:21 +02:00
2014-07-01 22:10:18 +02:00
senderMustBePlayer = false;
senderMustBeMember = false;
senderMustBeModerator = false;
2014-04-04 20:55:21 +02:00
senderMustBeAdmin = false;
}
@Override
public void perform() {
2014-07-01 22:10:18 +02:00
double amount = this.argAsDouble(0, 0d);
EconomyParticipator from = this.argAsFaction(1);
if (from == null) {
return;
}
EconomyParticipator to = this.argAsBestFPlayerMatch(2);
if (to == null) {
return;
}
2014-04-04 20:55:21 +02:00
boolean success = Econ.transferMoney(fme, from, to, amount);
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 transferred %s from the faction \"%s\" to the player \"%s\"", fme.getName(), Econ.moneyString(amount), from.describeTo(null), to.describeTo(null))));
2014-07-01 21:49:42 +02:00
}
2014-04-04 20:55:21 +02:00
}
}