2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-10-09 20:10:19 +02:00
|
|
|
|
|
|
|
import com.massivecraft.factions.Board;
|
|
|
|
import com.massivecraft.factions.Conf;
|
|
|
|
import com.massivecraft.factions.integration.Econ;
|
|
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
|
|
|
|
public class CmdUnclaimall extends FCommand
|
|
|
|
{
|
|
|
|
public CmdUnclaimall()
|
|
|
|
{
|
|
|
|
this.aliases.add("unclaimall");
|
|
|
|
this.aliases.add("declaimall");
|
|
|
|
|
|
|
|
//this.requiredArgs.add("");
|
|
|
|
//this.optionalArgs.put("", "");
|
|
|
|
|
2011-10-09 21:57:43 +02:00
|
|
|
this.permission = Permission.UNCLAIM_ALL.node;
|
|
|
|
this.disableOnLock = true;
|
2011-10-09 20:10:19 +02:00
|
|
|
|
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = true;
|
|
|
|
senderMustBeAdmin = false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform()
|
|
|
|
{
|
2011-10-12 18:48:47 +02:00
|
|
|
double refund = Econ.calculateTotalLandRefund(myFaction.getLandRounded());
|
|
|
|
if(Conf.bankFactionPaysLandCosts)
|
|
|
|
{
|
|
|
|
if ( ! Econ.modifyMoney(myFaction, refund, "to unclaim all faction land", "for unclaiming all faction land")) return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! Econ.modifyMoney(fme , refund, "to unclaim all faction land", "for unclaiming all faction land")) return;
|
|
|
|
}
|
2011-10-09 20:10:19 +02:00
|
|
|
|
|
|
|
Board.unclaimAll(myFaction.getId());
|
2011-10-21 19:20:33 +02:00
|
|
|
myFaction.msg("%s<i> unclaimed ALL of your faction's land.", fme.describeTo(myFaction, true));
|
2011-10-09 20:10:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|