Saber-Factions/src/com/massivecraft/factions/commands/FCommandUnclaimall.java

78 lines
2.2 KiB
Java
Raw Normal View History

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;
import com.massivecraft.factions.integration.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
2011-10-08 23:22:02 +02:00
public class FCommandUnclaimall extends FCommand {
2011-04-08 16:22:00 +02:00
public FCommandUnclaimall() {
aliases.add("unclaimall");
aliases.add("declaimall");
helpDescription = "Unclaim all of your factions land";
}
@Override
2011-04-08 16:22:00 +02:00
public void perform() {
if ( ! assertHasFaction()) {
return;
}
if( isLocked() ) {
sendLockMessage();
return;
}
2011-04-08 16:22:00 +02:00
if ( ! assertMinRole(Role.MODERATOR)) {
return;
}
2011-04-08 16:22:00 +02:00
Faction myFaction = me.getFaction();
String moneyBack = "";
if (Econ.enabled()) {
double refund = Econ.calculateTotalLandRefund(myFaction.getLandRounded());
// a real refund
if (refund > 0.0) {
2011-09-24 03:22:53 +02:00
if(Conf.bankFactionPaysLandCosts) {
Faction faction = me.getFaction();
faction.addMoney(refund);
moneyBack = " "+faction.getTag()+" received a refund of "+Econ.moneyString(refund)+".";
} else {
2011-10-08 23:22:02 +02:00
Econ.addMoney(me.getName(), refund);
2011-09-24 03:22:53 +02:00
moneyBack = " They received a refund of "+Econ.moneyString(refund)+".";
}
}
// wait, you're charging people to unclaim land? outrageous
else if (refund < 0.0) {
2011-09-24 03:22:53 +02:00
if(Conf.bankFactionPaysLandCosts) {
Faction faction = me.getFaction();
if(!faction.removeMoney(-refund)) {
sendMessage("Unclaiming all faction land will cost "+Econ.moneyString(-refund)+", which your faction can't currently afford.");
return;
}
moneyBack = " It cost "+faction.getTag()+" "+Econ.moneyString(refund)+".";
} else {
2011-10-08 23:22:02 +02:00
if (!Econ.deductMoney(me.getName(), -refund)) {
2011-09-24 03:22:53 +02:00
sendMessage("Unclaiming all faction land will cost "+Econ.moneyString(-refund)+", which you can't currently afford.");
return;
}
moneyBack = " It cost them "+Econ.moneyString(refund)+".";
}
moneyBack = " It cost them "+Econ.moneyString(refund)+".";
}
// no refund
else {
moneyBack = "";
}
}
2011-04-08 16:22:00 +02:00
Board.unclaimAll(myFaction.getId());
2011-09-24 03:22:53 +02:00
myFaction.sendMessage(me.getNameAndRelevant(myFaction)+Conf.colorSystem+" unclaimed ALL of your faction's land."+moneyBack);
2011-04-08 16:22:00 +02:00
}
}