2011-07-18 22:06:02 +02:00
|
|
|
package com.massivecraft.factions.commands;
|
2011-04-08 16:22:00 +02: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.Faction;
|
|
|
|
import com.massivecraft.factions.struct.Role;
|
2011-04-08 16:22:00 +02:00
|
|
|
|
|
|
|
public class FCommandUnclaimall extends FBaseCommand {
|
|
|
|
|
|
|
|
public FCommandUnclaimall() {
|
|
|
|
aliases.add("unclaimall");
|
|
|
|
aliases.add("declaimall");
|
|
|
|
|
|
|
|
helpDescription = "Unclaim all of your factions land";
|
|
|
|
}
|
|
|
|
|
2011-06-21 07:38:31 +02:00
|
|
|
@Override
|
2011-04-08 16:22:00 +02:00
|
|
|
public void perform() {
|
|
|
|
if ( ! assertHasFaction()) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-05-08 17:16:43 +02:00
|
|
|
if( isLocked() ) {
|
|
|
|
sendLockMessage();
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2011-04-08 16:22:00 +02:00
|
|
|
if ( ! assertMinRole(Role.MODERATOR)) {
|
|
|
|
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-04-08 16:22:00 +02:00
|
|
|
Faction myFaction = me.getFaction();
|
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.calculateTotalLandRefund(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 all faction 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-04-08 16:22:00 +02:00
|
|
|
Board.unclaimAll(myFaction.getId());
|
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 ALL of your factions land."+moneyBack);
|
2011-04-08 16:22:00 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|