2011-10-13 14:41:07 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
2013-04-16 11:05:49 +02:00
|
|
|
import com.massivecraft.factions.cmd.arg.ARFaction;
|
2013-04-16 12:04:12 +02:00
|
|
|
import com.massivecraft.factions.cmd.req.ReqBankCommandsEnabled;
|
2011-10-13 14:41:07 +02:00
|
|
|
import com.massivecraft.factions.integration.Econ;
|
|
|
|
import com.massivecraft.factions.Faction;
|
2013-04-09 12:56:29 +02:00
|
|
|
import com.massivecraft.factions.Perm;
|
2013-04-16 10:11:59 +02:00
|
|
|
import com.massivecraft.mcore.cmd.req.ReqHasPerm;
|
2011-10-13 14:41:07 +02:00
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public class CmdFactionsMoneyBalance extends FCommand
|
2011-10-13 14:41:07 +02:00
|
|
|
{
|
2013-04-10 13:12:22 +02:00
|
|
|
public CmdFactionsMoneyBalance()
|
2011-10-13 14:41:07 +02:00
|
|
|
{
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addAliases("b", "balance");
|
2011-10-13 14:41:07 +02:00
|
|
|
|
2013-04-16 10:30:21 +02:00
|
|
|
this.addOptionalArg("faction", "you");
|
2011-10-13 14:41:07 +02:00
|
|
|
|
2013-04-16 10:11:59 +02:00
|
|
|
this.addRequirements(ReqHasPerm.get(Perm.MONEY_BALANCE.node));
|
2013-04-16 12:04:12 +02:00
|
|
|
this.addRequirements(ReqBankCommandsEnabled.get());
|
2011-10-13 14:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform()
|
|
|
|
{
|
2013-04-16 11:05:49 +02:00
|
|
|
Faction faction = this.arg(0, ARFaction.get(), myFaction);
|
2011-10-13 14:41:07 +02:00
|
|
|
if (faction == null) return;
|
2013-04-16 11:05:49 +02:00
|
|
|
|
2013-04-09 12:56:29 +02:00
|
|
|
if (faction != myFaction && ! Perm.MONEY_BALANCE_ANY.has(sender, true)) return;
|
2011-10-13 14:41:07 +02:00
|
|
|
|
|
|
|
Econ.sendBalanceInfo(fme, faction);
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|