2011-07-18 22:06:02 +02:00
|
|
|
package com.massivecraft.factions.commands;
|
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;
|
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
|
|
|
import com.massivecraft.factions.Econ;
|
2011-07-18 22:06:02 +02:00
|
|
|
import com.massivecraft.factions.FLocation;
|
|
|
|
import com.massivecraft.factions.Faction;
|
|
|
|
import com.massivecraft.factions.Factions;
|
|
|
|
import com.massivecraft.factions.struct.Role;
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
public class FCommandUnclaim extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandUnclaim() {
|
2011-03-22 18:48:09 +01:00
|
|
|
aliases.add("unclaim");
|
|
|
|
aliases.add("declaim");
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
helpDescription = "Unclaim the land where you are standing";
|
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-03-22 15:45:41 +01:00
|
|
|
public void perform() {
|
2011-05-08 17:16:43 +02:00
|
|
|
|
|
|
|
if( isLocked() ) {
|
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-03-23 17:39:56 +01:00
|
|
|
FLocation flocation = new FLocation(me);
|
|
|
|
Faction otherFaction = Board.getFactionAt(flocation);
|
|
|
|
|
|
|
|
if (otherFaction.isSafeZone()) {
|
|
|
|
if (Factions.hasPermManageSafeZone(sender)) {
|
|
|
|
Board.removeAt(flocation);
|
|
|
|
sendMessage("Safe zone was unclaimed.");
|
|
|
|
} else {
|
|
|
|
sendMessage("This is a safe zone. You lack permissions to unclaim.");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
2011-05-29 23:28:29 +02:00
|
|
|
else if (otherFaction.isWarZone()) {
|
|
|
|
if (Factions.hasPermManageWarZone(sender)) {
|
|
|
|
Board.removeAt(flocation);
|
|
|
|
sendMessage("War zone was unclaimed.");
|
|
|
|
} else {
|
|
|
|
sendMessage("This is a war zone. You lack permissions to unclaim.");
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (Conf.adminBypassPlayers.contains(player.getName())) {
|
|
|
|
Board.removeAt(flocation);
|
|
|
|
|
|
|
|
otherFaction.sendMessage(me.getNameAndRelevant(otherFaction)+Conf.colorSystem+" unclaimed some of your land.");
|
|
|
|
sendMessage("You unclaimed this land.");
|
|
|
|
return;
|
|
|
|
}
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ! assertMinRole(Role.MODERATOR)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
Faction myFaction = me.getFaction();
|
2011-03-23 17:39:56 +01:00
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
|
|
|
|
if ( myFaction != otherFaction) {
|
|
|
|
sendMessage("You don't own this land.");
|
|
|
|
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
|
|
|
|
|
|
|
String moneyBack = "";
|
|
|
|
if (Econ.enabled()) {
|
|
|
|
double refund = Econ.calculateClaimRefund(myFaction.getLandRounded());
|
|
|
|
// a real refund
|
|
|
|
if (refund > 0.0) {
|
|
|
|
Econ.addMoney(player.getName(), refund);
|
|
|
|
moneyBack = " They received a refund of "+Econ.moneyString(refund)+".";
|
|
|
|
}
|
|
|
|
// wait, you're charging people to unclaim land? outrageous
|
|
|
|
else if (refund < 0.0) {
|
|
|
|
if (!Econ.deductMoney(player.getName(), -refund)) {
|
|
|
|
sendMessage("Unclaiming this land will cost "+Econ.moneyString(-refund)+", which you can't currently afford.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
moneyBack = " It cost them "+Econ.moneyString(refund)+".";
|
|
|
|
}
|
|
|
|
// no refund
|
|
|
|
else {
|
|
|
|
moneyBack = "";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-03-22 15:45:41 +01:00
|
|
|
Board.removeAt(flocation);
|
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
|
|
|
myFaction.sendMessage(me.getNameAndRelevant(myFaction)+Conf.colorSystem+" unclaimed some land."+moneyBack);
|
2011-03-22 15:45:41 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|