2019-07-02 03:26:13 +02:00
|
|
|
package com.massivecraft.factions.cmd.econ;
|
2011-10-13 16:07:07 +02:00
|
|
|
|
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
|
|
|
import com.massivecraft.factions.Conf;
|
2019-09-14 21:13:01 +02:00
|
|
|
import com.massivecraft.factions.FactionsPlugin;
|
|
|
|
import com.massivecraft.factions.cmd.CommandContext;
|
|
|
|
import com.massivecraft.factions.cmd.CommandRequirements;
|
2019-07-02 03:26:13 +02:00
|
|
|
import com.massivecraft.factions.cmd.FCommand;
|
2014-04-04 20:55:21 +02:00
|
|
|
import com.massivecraft.factions.iface.EconomyParticipator;
|
2011-10-13 16:07:07 +02:00
|
|
|
import com.massivecraft.factions.integration.Econ;
|
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2014-12-08 00:12:52 +01:00
|
|
|
import com.massivecraft.factions.zcore.util.TL;
|
2011-10-23 20:14:51 +02:00
|
|
|
import org.bukkit.ChatColor;
|
|
|
|
|
2011-10-13 16:07:07 +02:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdMoneyTransferFp extends FCommand {
|
2019-12-02 19:55:38 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author FactionsUUID Team
|
|
|
|
*/
|
|
|
|
|
2019-09-15 11:19:06 +02:00
|
|
|
public CmdMoneyTransferFp() {
|
|
|
|
this.aliases.add("fp");
|
|
|
|
|
|
|
|
this.requiredArgs.add("amount");
|
|
|
|
this.requiredArgs.add("faction");
|
|
|
|
this.requiredArgs.add("player");
|
|
|
|
|
|
|
|
this.requirements = new CommandRequirements.Builder(Permission.MONEY_F2P).build();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform(CommandContext context) {
|
|
|
|
double amount = context.argAsDouble(0, 0d);
|
|
|
|
EconomyParticipator from = context.argAsFaction(1);
|
|
|
|
if (from == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
EconomyParticipator to = context.argAsBestFPlayerMatch(2);
|
|
|
|
if (to == null) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
boolean success = Econ.transferMoney(context.fPlayer, from, to, amount);
|
|
|
|
|
|
|
|
if (success && Conf.logMoneyTransactions) {
|
|
|
|
FactionsPlugin.getInstance().log(ChatColor.stripColor(FactionsPlugin.getInstance().txt.parse(TL.COMMAND_MONEYTRANSFERFP_TRANSFER.toString(), context.fPlayer.getName(), Econ.moneyString(amount), from.describeTo(null), to.describeTo(null))));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_MONEYTRANSFERFP_DESCRIPTION;
|
|
|
|
}
|
2011-10-13 16:07:07 +02:00
|
|
|
}
|
2019-09-14 21:13:01 +02:00
|
|
|
|