Factions/src/com/massivecraft/factions/cmd/CmdFactionsUnclaim.java

71 lines
2.1 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2012-03-02 02:16:45 +01:00
import org.bukkit.Bukkit;
2013-04-11 07:01:30 +02:00
import com.massivecraft.factions.BoardOld;
2013-04-09 13:15:25 +02:00
import com.massivecraft.factions.ConfServer;
2012-03-02 02:16:45 +01:00
import com.massivecraft.factions.event.LandUnclaimEvent;
import com.massivecraft.factions.integration.Econ;
import com.massivecraft.factions.integration.SpoutFeatures;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.FLocation;
import com.massivecraft.factions.FPerm;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Faction;
2013-04-09 13:00:09 +02:00
import com.massivecraft.factions.Factions;
import com.massivecraft.factions.Perm;
2013-04-10 13:12:22 +02:00
public class CmdFactionsUnclaim extends FCommand
2011-10-09 18:35:39 +02:00
{
2013-04-10 13:12:22 +02:00
public CmdFactionsUnclaim()
2011-10-09 18:35:39 +02:00
{
this.aliases.add("unclaim");
this.aliases.add("declaim");
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
this.permission = Perm.UNCLAIM.node;
2011-10-09 21:57:43 +02:00
this.disableOnLock = true;
2011-10-09 18:35:39 +02:00
senderMustBePlayer = true;
senderMustBeMember = false;
2011-10-23 17:55:53 +02:00
senderMustBeOfficer = false;
senderMustBeLeader = false;
}
@Override
2011-10-09 18:35:39 +02:00
public void perform()
{
FLocation flocation = new FLocation(fme);
2013-04-11 07:01:30 +02:00
Faction otherFaction = BoardOld.getFactionAt(flocation);
if ( ! FPerm.TERRITORY.has(sender, otherFaction, true)) return;
LandUnclaimEvent unclaimEvent = new LandUnclaimEvent(flocation, otherFaction, fme);
Bukkit.getServer().getPluginManager().callEvent(unclaimEvent);
if(unclaimEvent.isCancelled()) return;
2011-10-12 18:48:47 +02:00
//String moneyBack = "<i>";
if (Econ.shouldBeUsed())
2011-10-09 18:35:39 +02:00
{
double refund = Econ.calculateClaimRefund(myFaction.getLandRounded());
2011-10-12 18:48:47 +02:00
2013-04-09 13:15:25 +02:00
if(ConfServer.bankEnabled && ConfServer.bankFactionPaysLandCosts)
2011-10-12 18:48:47 +02:00
{
if ( ! Econ.modifyMoney(myFaction, refund, "to unclaim this land", "for unclaiming this land")) return;
}
else
{
if ( ! Econ.modifyMoney(fme , refund, "to unclaim this land", "for unclaiming this land")) return;
}
}
2013-04-11 07:01:30 +02:00
BoardOld.removeAt(flocation);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2011-10-21 19:20:33 +02:00
myFaction.msg("%s<i> unclaimed some land.", fme.describeTo(myFaction, true));
2013-04-09 13:15:25 +02:00
if (ConfServer.logLandUnclaims)
Factions.get().log(fme.getName()+" unclaimed land at ("+flocation.getCoordString()+") from the faction: "+otherFaction.getTag());
}
}