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

93 lines
2.3 KiB
Java
Raw Normal View History

2011-10-09 21:57:43 +02:00
package com.massivecraft.factions.cmd;
2011-07-18 22:06:02 +02:00
import com.massivecraft.factions.Board;
import com.massivecraft.factions.Conf;
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.Faction;
import com.massivecraft.factions.P;
2011-10-09 18:35:39 +02:00
import com.massivecraft.factions.struct.Permission;
import com.massivecraft.factions.struct.Rel;
2011-10-09 20:10:19 +02:00
public class CmdUnclaim extends FCommand
2011-10-09 18:35:39 +02:00
{
2011-10-09 20:10:19 +02:00
public CmdUnclaim()
2011-10-09 18:35:39 +02:00
{
this.aliases.add("unclaim");
this.aliases.add("declaim");
//this.requiredArgs.add("");
//this.optionalArgs.put("", "");
2011-10-09 21:57:43 +02:00
this.permission = Permission.UNCLAIM.node;
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);
2011-03-23 17:39:56 +01:00
Faction otherFaction = Board.getFactionAt(flocation);
2011-10-09 18:35:39 +02:00
if (fme.isAdminBypassing())
{
Board.removeAt(flocation);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2011-10-21 19:20:33 +02:00
otherFaction.msg("%s<i> unclaimed some of your land.", fme.describeTo(otherFaction, true));
2011-10-10 13:40:24 +02:00
msg("<i>You unclaimed this land.");
if (Conf.logLandUnclaims)
P.p.log(fme.getName()+" unclaimed land at ("+flocation.getCoordString()+") from the faction: "+otherFaction.getTag());
return;
}
2011-03-23 17:39:56 +01:00
2011-10-09 18:35:39 +02:00
if ( ! assertHasFaction())
{
return;
}
if ( ! assertMinRole(Rel.OFFICER))
2011-10-09 18:35:39 +02:00
{
return;
}
2011-10-09 18:35:39 +02:00
if ( myFaction != otherFaction)
{
2011-10-10 13:40:24 +02:00
msg("<b>You don't own this land.");
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
if(Conf.bankFactionPaysLandCosts)
{
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;
}
}
Board.removeAt(flocation);
SpoutFeatures.updateTerritoryDisplayLoc(flocation);
2011-10-21 19:20:33 +02:00
myFaction.msg("%s<i> unclaimed some land.", fme.describeTo(myFaction, true));
if (Conf.logLandUnclaims)
P.p.log(fme.getName()+" unclaimed land at ("+flocation.getCoordString()+") from the faction: "+otherFaction.getTag());
}
}