2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-09-24 03:22:53 +02:00
|
|
|
|
2011-10-13 14:41:07 +02:00
|
|
|
import com.massivecraft.factions.Faction;
|
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;
|
2011-09-24 03:22:53 +02:00
|
|
|
|
2011-10-13 14:41:07 +02:00
|
|
|
public class CmdMoneyWithdraw extends FCommand
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-10-13 14:41:07 +02:00
|
|
|
public CmdMoneyWithdraw()
|
2011-10-09 14:53:38 +02:00
|
|
|
{
|
2011-10-13 16:07:07 +02:00
|
|
|
this.aliases.add("w");
|
2011-10-09 14:53:38 +02:00
|
|
|
this.aliases.add("withdraw");
|
2011-09-24 03:22:53 +02:00
|
|
|
|
2011-10-09 14:53:38 +02:00
|
|
|
this.requiredArgs.add("amount");
|
2011-10-13 14:41:07 +02:00
|
|
|
this.optionalArgs.put("faction", "yours");
|
2011-10-09 14:53:38 +02:00
|
|
|
|
2011-10-13 14:41:07 +02:00
|
|
|
this.permission = Permission.MONEY_WITHDRAW.node;
|
2011-10-13 16:07:07 +02:00
|
|
|
this.setHelpShort("withdraw money");
|
2011-10-09 14:53:38 +02:00
|
|
|
|
|
|
|
senderMustBePlayer = true;
|
2011-10-13 14:41:07 +02:00
|
|
|
senderMustBeMember = false;
|
2011-10-09 14:53:38 +02:00
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeAdmin = false;
|
2011-09-24 03:22:53 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2011-10-09 14:53:38 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2011-10-13 16:07:07 +02:00
|
|
|
double amount = this.argAsDouble(0, 0d);
|
2011-10-13 14:41:07 +02:00
|
|
|
Faction faction = this.argAsFaction(1, myFaction);
|
|
|
|
if (faction == null) return;
|
|
|
|
Econ.transferMoney(fme, faction, fme, amount);
|
2011-09-24 03:22:53 +02:00
|
|
|
}
|
|
|
|
}
|