f30cd44b54
------------------------------------------------------------------ 1.7 Support Added - Titles disabled in 1.7 - Banners disabled in 1.7 - Itemflags disabled in 1.7 for /f warp, /f perms, and /f upgrades /f perms GUI has been redesigned ( Reset your config.yml or Change it from the config differences ) Reset conf.json for the following. Default color for members set to light green ( &a ) Default color for wilderness set to gray ( &7 ) ------------------------------------------------------------------
59 lines
1.8 KiB
Java
59 lines
1.8 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.fperms.Access;
|
|
import com.massivecraft.factions.zcore.fperms.PermissableAction;
|
|
import com.massivecraft.factions.zcore.util.TL;
|
|
import org.bukkit.ChatColor;
|
|
|
|
|
|
public class CmdMoneyWithdraw extends FCommand {
|
|
|
|
public CmdMoneyWithdraw() {
|
|
this.aliases.add("w");
|
|
this.aliases.add("withdraw");
|
|
|
|
this.requiredArgs.add("amount");
|
|
this.optionalArgs.put("faction", "yours");
|
|
|
|
this.permission = Permission.MONEY_WITHDRAW.node;
|
|
|
|
senderMustBePlayer = true;
|
|
senderMustBeMember = false;
|
|
senderMustBeModerator = false;
|
|
senderMustBeColeader = false;
|
|
senderMustBeAdmin = false;
|
|
}
|
|
|
|
@Override
|
|
public void perform() {
|
|
|
|
double amount = this.argAsDouble(0, 0d);
|
|
EconomyParticipator faction = this.argAsFaction(1, myFaction);
|
|
if (faction == null) {
|
|
return;
|
|
}
|
|
|
|
Access access = myFaction.getAccess(fme, PermissableAction.WITHDRAW);
|
|
if (access == Access.DENY) {
|
|
fme.msg(TL.GENERIC_NOPERMISSION, "withdraw");
|
|
return;
|
|
}
|
|
|
|
boolean success = Econ.transferMoney(fme, faction, fme, amount);
|
|
|
|
if (success && Conf.logMoneyTransactions) {
|
|
P.p.log(ChatColor.stripColor(P.p.txt.parse(TL.COMMAND_MONEYWITHDRAW_WITHDRAW.toString(), fme.getName(), Econ.moneyString(amount), faction.describeTo(null))));
|
|
}
|
|
}
|
|
|
|
@Override
|
|
public TL getUsageTranslation() {
|
|
return TL.COMMAND_MONEYWITHDRAW_DESCRIPTION;
|
|
}
|
|
}
|