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

72 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-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;
import com.massivecraft.factions.BoardColl;
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;
import com.massivecraft.mcore.ps.PS;
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 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()
{
PS chunk = PS.valueOf(me).getChunk(true);
Faction otherFaction = BoardColl.get().getFactionAt(chunk);
if ( ! FPerm.TERRITORY.has(sender, otherFaction, true)) return;
LandUnclaimEvent unclaimEvent = new LandUnclaimEvent(chunk, 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;
}
}
BoardColl.get().removeAt(chunk);
SpoutFeatures.updateTerritoryDisplayLoc(chunk);
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 ("+chunk.getChunkX()+","+chunk.getChunkZ()+") from the faction: "+otherFaction.getTag());
}
}
}