2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.Board;
|
|
|
|
import com.massivecraft.factions.Conf;
|
2011-10-05 12:13:54 +02:00
|
|
|
import com.massivecraft.factions.integration.Econ;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.FLocation;
|
|
|
|
import com.massivecraft.factions.Faction;
|
2011-10-09 18:35:39 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.struct.Role;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
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-03-22 18:48:09 +01:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
|
|
|
senderMustBeModerator = false;
|
|
|
|
senderMustBeAdmin = false;
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-10-09 18:35:39 +02:00
|
|
|
public void perform()
|
|
|
|
{
|
2011-10-09 14:53:38 +02:00
|
|
|
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 (otherFaction.isSafeZone())
|
|
|
|
{
|
|
|
|
if (Permission.MANAGE_SAFE_ZONE.has(sender))
|
|
|
|
{
|
2011-03-23 17:39:56 +01:00
|
|
|
Board.removeAt(flocation);
|
2011-10-09 18:35:39 +02:00
|
|
|
sendMessageParsed("<i>Safe zone was unclaimed.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sendMessageParsed("<b>This is a safe zone. You lack permissions to unclaim.");
|
2011-03-23 17:39:56 +01:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2011-10-09 18:35:39 +02:00
|
|
|
else if (otherFaction.isWarZone())
|
|
|
|
{
|
|
|
|
if (Permission.MANAGE_WAR_ZONE.has(sender))
|
|
|
|
{
|
2011-05-29 23:28:29 +02:00
|
|
|
Board.removeAt(flocation);
|
2011-10-09 18:35:39 +02:00
|
|
|
sendMessageParsed("<i>War zone was unclaimed.");
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
sendMessageParsed("<b>This is a war zone. You lack permissions to unclaim.");
|
2011-05-29 23:28:29 +02:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
if (fme.isAdminBypassing())
|
|
|
|
{
|
2011-05-29 23:28:29 +02:00
|
|
|
Board.removeAt(flocation);
|
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
otherFaction.sendMessageParsed("%s<i> unclaimed some of your land.", fme.getNameAndRelevant(otherFaction));
|
|
|
|
sendMessageParsed("<i>You unclaimed this land.");
|
2011-05-29 23:28:29 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
if ( ! assertHasFaction())
|
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
if ( ! assertMinRole(Role.MODERATOR))
|
|
|
|
{
|
2011-03-22 15:45:41 +01:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
if ( myFaction != otherFaction)
|
|
|
|
{
|
|
|
|
sendMessageParsed("<b>You don't own this land.");
|
2011-03-22 15:45:41 +01:00
|
|
|
return;
|
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
|
2011-10-09 18:35:39 +02:00
|
|
|
String moneyBack = "<i>";
|
|
|
|
if (Econ.enabled())
|
|
|
|
{
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
double refund = Econ.calculateClaimRefund(myFaction.getLandRounded());
|
|
|
|
// a real refund
|
2011-10-09 18:35:39 +02:00
|
|
|
if (refund > 0.0)
|
|
|
|
{
|
|
|
|
if(Conf.bankFactionPaysLandCosts)
|
|
|
|
{
|
|
|
|
Faction faction = myFaction;
|
2011-09-24 03:22:53 +02:00
|
|
|
faction.addMoney(refund);
|
2011-10-09 18:35:39 +02:00
|
|
|
moneyBack = " "+faction.getTag()+"<i> received a refund of <h>"+Econ.moneyString(refund)+"<i>.";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2011-10-09 14:53:38 +02:00
|
|
|
Econ.addMoney(fme.getName(), refund);
|
2011-10-09 18:35:39 +02:00
|
|
|
moneyBack = " They received a refund of <h>"+Econ.moneyString(refund)+"<i>.";
|
2011-09-24 03:22:53 +02:00
|
|
|
}
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
// wait, you're charging people to unclaim land? outrageous
|
2011-10-09 18:35:39 +02:00
|
|
|
else if (refund < 0.0)
|
|
|
|
{
|
|
|
|
if(Conf.bankFactionPaysLandCosts)
|
|
|
|
{
|
|
|
|
Faction faction = myFaction;
|
|
|
|
if(!faction.removeMoney(-refund))
|
|
|
|
{
|
|
|
|
sendMessageParsed("<b>Unclaiming this land will cost <h>%s<b> which your faction can't currently afford.", Econ.moneyString(-refund));
|
2011-09-24 03:22:53 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-10-09 18:35:39 +02:00
|
|
|
moneyBack = " It cost "+faction.getTag()+" <h>"+Econ.moneyString(refund)+"<i>.";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if (!Econ.deductMoney(fme.getName(), -refund))
|
|
|
|
{
|
|
|
|
sendMessageParsed("<b>Unclaiming this land will cost <h>%s<b> which you can't currently afford.", Econ.moneyString(-refund));
|
2011-09-24 03:22:53 +02:00
|
|
|
return;
|
|
|
|
}
|
2011-10-09 18:35:39 +02:00
|
|
|
moneyBack = " It cost them <h>"+Econ.moneyString(refund)+"<i>.";
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
// no refund
|
2011-10-09 18:35:39 +02:00
|
|
|
else
|
|
|
|
{
|
Added basic support for iConomy, where most Factions commands can be made to cost (or give) money. For claiming land, there are some extra features. Each additional land claimed by default costs more than the last, with the multiplier being configurable. For example, the first claim might cost $30, the 2nd $45, the third $60, and so forth. When land is claimed from a weakened faction, there is a configurable bonus amount of money deducted from the cost of claiming the land, as an incentive; this number can be changed to a negative value to instead make it cost more to claim such land. When land is unclaimed, a configurable percentage of the cost of claiming the land can be refunded (defaults to 70% of the cost). The total value of a faction's claimed land is now shown in the info given by /f who [faction tag], along with the depreciated (refund) value.
2011-08-02 01:05:01 +02:00
|
|
|
moneyBack = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
Board.removeAt(flocation);
|
2011-10-09 18:35:39 +02:00
|
|
|
myFaction.sendMessageParsed("%s<i> unclaimed some land."+moneyBack, fme.getNameAndRelevant(myFaction));
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|