2011-10-09 21:57:43 +02:00
|
|
|
package com.massivecraft.factions.cmd;
|
2011-10-09 20:10:19 +02:00
|
|
|
|
2012-03-11 18:28:31 +01:00
|
|
|
import org.bukkit.Bukkit;
|
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
import com.massivecraft.factions.Board;
|
|
|
|
import com.massivecraft.factions.Conf;
|
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
|
|
|
import com.massivecraft.factions.P;
|
2012-03-11 18:28:31 +01:00
|
|
|
import com.massivecraft.factions.event.LandUnclaimAllEvent;
|
2011-10-09 20:10:19 +02:00
|
|
|
import com.massivecraft.factions.integration.Econ;
|
2011-10-23 16:03:28 +02:00
|
|
|
import com.massivecraft.factions.integration.SpoutFeatures;
|
2011-10-09 20:10:19 +02:00
|
|
|
import com.massivecraft.factions.struct.Permission;
|
|
|
|
|
|
|
|
public class CmdUnclaimall extends FCommand
|
|
|
|
{
|
|
|
|
public CmdUnclaimall()
|
|
|
|
{
|
|
|
|
this.aliases.add("unclaimall");
|
|
|
|
this.aliases.add("declaimall");
|
|
|
|
|
|
|
|
//this.requiredArgs.add("");
|
|
|
|
//this.optionalArgs.put("", "");
|
|
|
|
|
2011-10-09 21:57:43 +02:00
|
|
|
this.permission = Permission.UNCLAIM_ALL.node;
|
|
|
|
this.disableOnLock = true;
|
2011-10-09 20:10:19 +02:00
|
|
|
|
|
|
|
senderMustBePlayer = true;
|
|
|
|
senderMustBeMember = false;
|
2011-10-23 17:55:53 +02:00
|
|
|
senderMustBeOfficer = true;
|
|
|
|
senderMustBeLeader = false;
|
2011-10-09 20:10:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void perform()
|
|
|
|
{
|
2011-10-23 17:04:36 +02:00
|
|
|
if (Econ.shouldBeUsed())
|
2011-10-12 18:48:47 +02:00
|
|
|
{
|
2011-10-23 17:04:36 +02:00
|
|
|
double refund = Econ.calculateTotalLandRefund(myFaction.getLandRounded());
|
2011-11-11 20:10:18 +01:00
|
|
|
if(Conf.bankEnabled && Conf.bankFactionPaysLandCosts)
|
2011-10-23 17:04:36 +02:00
|
|
|
{
|
|
|
|
if ( ! Econ.modifyMoney(myFaction, refund, "to unclaim all faction land", "for unclaiming all faction land")) return;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ( ! Econ.modifyMoney(fme , refund, "to unclaim all faction land", "for unclaiming all faction land")) return;
|
|
|
|
}
|
2011-10-12 18:48:47 +02:00
|
|
|
}
|
2011-10-09 20:10:19 +02:00
|
|
|
|
2012-03-11 18:28:31 +01:00
|
|
|
LandUnclaimAllEvent unclaimAllEvent = new LandUnclaimAllEvent(myFaction, fme);
|
2012-03-13 14:27:03 +01:00
|
|
|
Bukkit.getServer().getPluginManager().callEvent(unclaimAllEvent);
|
2012-03-11 18:28:31 +01:00
|
|
|
// this event cannot be cancelled
|
|
|
|
|
2011-10-09 20:10:19 +02:00
|
|
|
Board.unclaimAll(myFaction.getId());
|
2011-10-21 19:20:33 +02:00
|
|
|
myFaction.msg("%s<i> unclaimed ALL of your faction's land.", fme.describeTo(myFaction, true));
|
2011-10-23 16:03:28 +02:00
|
|
|
SpoutFeatures.updateTerritoryDisplayLoc(null);
|
Additional logging, with new conf.json settings to enable/disable logging of specific events:
"logFactionCreate": true, - log faction creation
"logFactionDisband": true, - log factions being disbanded, by command or by circumstance
"logFactionJoin": true, - log player joining a faction
"logFactionKick": true, - log player being kicked from a faction
"logFactionLeave": true, - log player leaving a faction
"logLandClaims": true, - log land being claimed (including safe zone and war zone)
"logLandUnclaims": true, - log land being unclaimed (including safe zone and war zone)
"logMoneyTransactions": true, - log money being deposited, withdrawn, and otherwise transferred in relation to faction banks
Also a fix for a potential NPE from players logging out and Spout appearance handler referencing them afterwards
2011-10-23 19:50:02 +02:00
|
|
|
|
|
|
|
if (Conf.logLandUnclaims)
|
|
|
|
P.p.log(fme.getName()+" unclaimed everything for the faction: "+myFaction.getTag());
|
2011-10-09 20:10:19 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|