2015-10-19 17:43:46 +00:00
|
|
|
package me.totalfreedom.totalfreedommod.commands;
|
|
|
|
|
|
|
|
import me.totalfreedom.totalfreedommod.config.ConfigEntry;
|
2015-11-15 23:32:04 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.rank.PlayerRank;
|
2015-10-19 17:43:46 +00:00
|
|
|
import me.totalfreedom.totalfreedommod.GameRuleHandler;
|
|
|
|
import org.bukkit.command.Command;
|
|
|
|
import org.bukkit.command.CommandSender;
|
|
|
|
import org.bukkit.entity.Player;
|
|
|
|
|
|
|
|
@CommandPermissions(level = PlayerRank.SUPER_ADMIN, source = SourceType.ONLY_CONSOLE)
|
|
|
|
@CommandParameters(description = "Control mob rezzing parameters.", usage = "/<command> <on|off|setmax <count>|dragon|giant|ghast|slime>")
|
2015-11-15 23:32:04 +00:00
|
|
|
public class Command_moblimiter extends FreedomCommand {
|
|
|
|
|
2015-10-19 17:43:46 +00:00
|
|
|
@Override
|
2015-11-15 23:32:04 +00:00
|
|
|
public boolean run(CommandSender sender, Player sender_p, Command cmd, String commandLabel, String[] args, boolean senderIsConsole) {
|
|
|
|
if (args.length < 1) {
|
2015-10-19 17:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
if (args[0].equalsIgnoreCase("on")) {
|
2015-10-19 17:43:46 +00:00
|
|
|
ConfigEntry.MOB_LIMITER_ENABLED.setBoolean(true);
|
2015-11-15 23:32:04 +00:00
|
|
|
} else if (args[0].equalsIgnoreCase("off")) {
|
2015-10-19 17:43:46 +00:00
|
|
|
ConfigEntry.MOB_LIMITER_ENABLED.setBoolean(false);
|
2015-11-15 23:32:04 +00:00
|
|
|
} else if (args[0].equalsIgnoreCase("dragon")) {
|
2015-10-19 17:43:46 +00:00
|
|
|
ConfigEntry.MOB_LIMITER_DISABLE_DRAGON.setBoolean(!ConfigEntry.MOB_LIMITER_DISABLE_DRAGON.getBoolean());
|
2015-11-15 23:32:04 +00:00
|
|
|
} else if (args[0].equalsIgnoreCase("giant")) {
|
2015-10-19 17:43:46 +00:00
|
|
|
ConfigEntry.MOB_LIMITER_DISABLE_GIANT.setBoolean(!ConfigEntry.MOB_LIMITER_DISABLE_GIANT.getBoolean());
|
2015-11-15 23:32:04 +00:00
|
|
|
} else if (args[0].equalsIgnoreCase("slime")) {
|
2015-10-19 17:43:46 +00:00
|
|
|
ConfigEntry.MOB_LIMITER_DISABLE_SLIME.setBoolean(!ConfigEntry.MOB_LIMITER_DISABLE_SLIME.getBoolean());
|
2015-11-15 23:32:04 +00:00
|
|
|
} else if (args[0].equalsIgnoreCase("ghast")) {
|
2015-10-19 17:43:46 +00:00
|
|
|
ConfigEntry.MOB_LIMITER_DISABLE_GHAST.setBoolean(!ConfigEntry.MOB_LIMITER_DISABLE_GHAST.getBoolean());
|
2015-11-15 23:32:04 +00:00
|
|
|
} else {
|
|
|
|
if (args.length < 2) {
|
2015-10-19 17:43:46 +00:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
if (args[0].equalsIgnoreCase("setmax")) {
|
|
|
|
try {
|
2015-10-19 17:43:46 +00:00
|
|
|
ConfigEntry.MOB_LIMITER_MAX.setInteger(Math.max(0, Math.min(2000, Integer.parseInt(args[1]))));
|
2015-11-15 23:32:04 +00:00
|
|
|
} catch (NumberFormatException nfex) {
|
2015-10-19 17:43:46 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-11-15 23:32:04 +00:00
|
|
|
if (ConfigEntry.MOB_LIMITER_ENABLED.getBoolean()) {
|
2015-10-19 17:43:46 +00:00
|
|
|
sender.sendMessage("Moblimiter enabled. Maximum mobcount set to: " + ConfigEntry.MOB_LIMITER_MAX.getInteger() + ".");
|
|
|
|
|
|
|
|
playerMsg("Dragon: " + (ConfigEntry.MOB_LIMITER_DISABLE_DRAGON.getBoolean() ? "disabled" : "enabled") + ".");
|
|
|
|
playerMsg("Giant: " + (ConfigEntry.MOB_LIMITER_DISABLE_GIANT.getBoolean() ? "disabled" : "enabled") + ".");
|
|
|
|
playerMsg("Slime: " + (ConfigEntry.MOB_LIMITER_DISABLE_SLIME.getBoolean() ? "disabled" : "enabled") + ".");
|
|
|
|
playerMsg("Ghast: " + (ConfigEntry.MOB_LIMITER_DISABLE_GHAST.getBoolean() ? "disabled" : "enabled") + ".");
|
2015-11-15 23:32:04 +00:00
|
|
|
} else {
|
2015-10-19 17:43:46 +00:00
|
|
|
playerMsg("Moblimiter is disabled. No mob restrictions are in effect.");
|
|
|
|
}
|
|
|
|
|
|
|
|
plugin.gr.setGameRule(GameRuleHandler.TFM_GameRule.DO_MOB_SPAWNING, !ConfigEntry.MOB_LIMITER_ENABLED.getBoolean());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|