2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-09-24 03:22:53 +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;
|
|
|
|
import com.massivecraft.factions.P;
|
2014-04-04 20:55:21 +02:00
|
|
|
import com.massivecraft.factions.iface.EconomyParticipator;
|
2011-10-05 12:13:54 +02:00
|
|
|
import com.massivecraft.factions.integration.Econ;
|
2011-10-09 14:53:38 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2018-02-03 22:01:25 +01:00
|
|
|
import com.massivecraft.factions.zcore.fperms.Access;
|
|
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
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;
|
|
|
|
|
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public class CmdMoneyWithdraw extends FCommand {
|
2014-08-05 17:17:27 +02:00
|
|
|
|
2014-04-04 20:55:21 +02:00
|
|
|
public CmdMoneyWithdraw() {
|
2014-07-01 22:10:18 +02:00
|
|
|
this.aliases.add("w");
|
|
|
|
this.aliases.add("withdraw");
|
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_WITHDRAW.node;
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
2018-03-26 23:43:15 +02:00
|
|
|
senderMustBeColeader = false;
|
2014-07-01 22:10:18 +02:00
|
|
|
senderMustBeAdmin = false;
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform() {
|
2018-05-03 16:03:16 +02:00
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
double amount = this.argAsDouble(0, 0d);
|
|
|
|
EconomyParticipator faction = this.argAsFaction(1, myFaction);
|
|
|
|
if (faction == null) {
|
|
|
|
return;
|
|
|
|
}
|
2018-02-03 22:01:25 +01:00
|
|
|
|
|
|
|
Access access = myFaction.getAccess(fme, PermissableAction.WITHDRAW);
|
|
|
|
if (access == Access.DENY) {
|
|
|
|
fme.msg(TL.GENERIC_NOPERMISSION, "withdraw");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2014-07-01 22:10:18 +02:00
|
|
|
boolean success = Econ.transferMoney(fme, faction, fme, amount);
|
2014-04-04 20:55:21 +02:00
|
|
|
|
2014-07-01 21:49:42 +02:00
|
|
|
if (success && Conf.logMoneyTransactions) {
|
2014-12-08 00:12:52 +01:00
|
|
|
P.p.log(ChatColor.stripColor(P.p.txt.parse(TL.COMMAND_MONEYWITHDRAW_WITHDRAW.toString(), fme.getName(), Econ.moneyString(amount), faction.describeTo(null))));
|
2014-07-01 21:49:42 +02:00
|
|
|
}
|
2014-04-04 20:55:21 +02:00
|
|
|
}
|
2015-01-22 00:58:33 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public TL getUsageTranslation() {
|
|
|
|
return TL.COMMAND_MONEYWITHDRAW_DESCRIPTION;
|
|
|
|
}
|
2011-09-24 03:22:53 +02:00
|
|
|
}
|