summaryrefslogtreecommitdiffstats
path: root/Essentials/src/net/ess3/api/ISettings.java
diff options
context:
space:
mode:
Diffstat (limited to 'Essentials/src/net/ess3/api/ISettings.java')
-rw-r--r--Essentials/src/net/ess3/api/ISettings.java196
1 files changed, 1 insertions, 195 deletions
diff --git a/Essentials/src/net/ess3/api/ISettings.java b/Essentials/src/net/ess3/api/ISettings.java
index d7ac3b570..256cf1635 100644
--- a/Essentials/src/net/ess3/api/ISettings.java
+++ b/Essentials/src/net/ess3/api/ISettings.java
@@ -1,201 +1,7 @@
package net.ess3.api;
-import com.earth2me.essentials.IConf;
-import com.earth2me.essentials.User;
-import com.earth2me.essentials.commands.IEssentialsCommand;
-import com.earth2me.essentials.signs.EssentialsSign;
-import com.earth2me.essentials.textreader.IText;
-import java.math.BigDecimal;
-import java.text.MessageFormat;
-import java.util.List;
-import java.util.Map;
-import java.util.Set;
-import org.bukkit.ChatColor;
-import org.bukkit.configuration.ConfigurationSection;
-import org.bukkit.event.EventPriority;
-
-public interface ISettings extends IConf
+public interface ISettings extends com.earth2me.essentials.ISettings
{
- boolean areSignsDisabled();
-
- IText getAnnounceNewPlayerFormat();
-
- boolean getAnnounceNewPlayers();
-
- String getNewPlayerKit();
-
- String getBackupCommand();
-
- long getBackupInterval();
-
- String getChatFormat(String group);
-
- int getChatRadius();
-
- BigDecimal getCommandCost(IEssentialsCommand cmd);
-
- BigDecimal getCommandCost(String label);
-
- String getCurrencySymbol();
-
- int getOversizedStackSize();
-
- int getDefaultStackSize();
-
- double getHealCooldown();
-
- Set<String> getSocialSpyCommands();
-
- Map<String, Object> getKit(String name);
-
- ConfigurationSection getKits();
-
- String getLocale();
-
- String getNewbieSpawn();
-
- String getNicknamePrefix();
-
- ChatColor getOperatorColor() throws Exception;
-
- boolean getPerWarpPermission();
-
- boolean getProtectBoolean(final String configName, boolean def);
-
- int getProtectCreeperMaxHeight();
-
- List<Integer> getProtectList(final String configName);
-
- boolean getProtectPreventSpawn(final String creatureName);
-
- String getProtectString(final String configName);
-
- boolean getRespawnAtHome();
-
- Set getMultipleHomes();
-
- int getHomeLimit(String set);
-
- int getHomeLimit(User user);
-
- int getSpawnMobLimit();
-
- BigDecimal getStartingBalance();
-
- double getTeleportCooldown();
-
- double getTeleportDelay();
-
- boolean hidePermissionlessHelp();
-
- boolean isCommandDisabled(final IEssentialsCommand cmd);
-
- boolean isCommandDisabled(String label);
-
- boolean isCommandOverridden(String name);
-
- boolean isDebug();
-
- boolean isEcoDisabled();
-
- boolean isTradeInStacks(int id);
-
- List<Integer> itemSpawnBlacklist();
-
- List<EssentialsSign> enabledSigns();
-
- boolean permissionBasedItemSpawn();
-
- boolean showNonEssCommandsInHelp();
-
- boolean warnOnBuildDisallow();
-
- boolean warnOnSmite();
-
- BigDecimal getMaxMoney();
-
- BigDecimal getMinMoney();
-
- boolean isEcoLogEnabled();
-
- boolean isEcoLogUpdateEnabled();
-
- boolean removeGodOnDisconnect();
-
- boolean changeDisplayName();
-
- boolean changePlayerListName();
-
- boolean isPlayerCommand(String string);
-
- boolean useBukkitPermissions();
-
- boolean addPrefixSuffix();
-
- boolean disablePrefix();
-
- boolean disableSuffix();
-
- long getAutoAfk();
-
- long getAutoAfkKick();
-
- boolean getFreezeAfkPlayers();
-
- boolean cancelAfkOnMove();
-
- boolean cancelAfkOnInteract();
-
- boolean areDeathMessagesEnabled();
-
- public void setDebug(boolean debug);
-
- Set<String> getNoGodWorlds();
-
- boolean getUpdateBedAtDaytime();
-
- boolean allowUnsafeEnchantments();
-
- boolean getRepairEnchanted();
-
- boolean isWorldTeleportPermissions();
-
- boolean isWorldHomePermissions();
-
- boolean registerBackInListener();
-
- boolean getDisableItemPickupWhileAfk();
-
- EventPriority getRespawnPriority();
-
- long getTpaAcceptCancellation();
-
- boolean isMetricsEnabled();
-
- void setMetricsEnabled(boolean metricsEnabled);
-
- long getTeleportInvulnerability();
-
- boolean isTeleportInvulnerability();
-
- long getLoginAttackDelay();
-
- int getSignUsePerSecond();
-
- double getMaxFlySpeed();
-
- double getMaxWalkSpeed();
-
- public int getMailsPerMinute();
-
- public long getEconomyLagWarning();
-
- public void setEssentialsChatActive(boolean b);
-
- long getMaxTempban();
-
- public Map<String, Object> getListGroupConfig();
- public int getMaxNickLength();
}