2011-10-13 14:41:07 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
|
|
|
|
2017-02-10 16:38:36 +01:00
|
|
|
import com.massivecraft.factions.Perm;
|
2013-04-16 12:04:12 +02:00
|
|
|
import com.massivecraft.factions.cmd.req.ReqBankCommandsEnabled;
|
2015-10-21 19:35:41 +02:00
|
|
|
import com.massivecraft.factions.cmd.type.TypeFaction;
|
2013-04-22 09:37:53 +02:00
|
|
|
import com.massivecraft.factions.entity.Faction;
|
2011-10-13 14:41:07 +02:00
|
|
|
import com.massivecraft.factions.integration.Econ;
|
2015-02-12 12:00:55 +01:00
|
|
|
import com.massivecraft.massivecore.MassiveException;
|
2011-10-13 14:41:07 +02:00
|
|
|
|
2014-09-18 13:41:20 +02:00
|
|
|
public class CmdFactionsMoneyBalance extends FactionsCommand
|
2011-10-13 14:41:07 +02:00
|
|
|
{
|
2013-11-11 09:31:04 +01:00
|
|
|
// -------------------------------------------- //
|
|
|
|
// CONSTRUCT
|
|
|
|
// -------------------------------------------- //
|
|
|
|
|
2013-04-10 13:12:22 +02:00
|
|
|
public CmdFactionsMoneyBalance()
|
2011-10-13 14:41:07 +02:00
|
|
|
{
|
2015-10-21 19:35:41 +02:00
|
|
|
// Parameters
|
2019-02-01 09:14:04 +01:00
|
|
|
this.addParameter(TypeFaction.get(), "faction", "you").setDesc("the faction whose balance to check");
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// Requirements
|
2013-04-16 12:04:12 +02:00
|
|
|
this.addRequirements(ReqBankCommandsEnabled.get());
|
2011-10-13 14:41:07 +02:00
|
|
|
}
|
2013-11-11 09:31:04 +01:00
|
|
|
|
|
|
|
// -------------------------------------------- //
|
|
|
|
// OVERRIDE
|
|
|
|
// -------------------------------------------- //
|
2011-10-13 14:41:07 +02:00
|
|
|
|
|
|
|
@Override
|
2015-02-12 12:00:55 +01:00
|
|
|
public void perform() throws MassiveException
|
2011-10-13 14:41:07 +02:00
|
|
|
{
|
2015-05-06 17:04:35 +02:00
|
|
|
Faction faction = this.readArg(msenderFaction);
|
2015-02-04 01:30:07 +01:00
|
|
|
|
2014-09-18 13:41:20 +02:00
|
|
|
if (faction != msenderFaction && ! Perm.MONEY_BALANCE_ANY.has(sender, true)) return;
|
2011-10-13 14:41:07 +02:00
|
|
|
|
2014-09-18 13:41:20 +02:00
|
|
|
Econ.sendBalanceInfo(msender, faction);
|
2011-10-13 14:41:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|