Class Towny

java.lang.Object
org.bukkit.plugin.PluginBase
org.bukkit.plugin.java.JavaPlugin
com.palmergames.bukkit.towny.Towny
All Implemented Interfaces:
org.bukkit.command.CommandExecutor, org.bukkit.command.TabCompleter, org.bukkit.command.TabExecutor, org.bukkit.plugin.Plugin

public class Towny extends org.bukkit.plugin.java.JavaPlugin
Main class for Towny
Author:
Shade, ElgarL, LlmDl
  • Constructor Details Link icon

    • Towny Link icon

      public Towny()
  • Method Details Link icon

    • onEnable Link icon

      public void onEnable()
      Specified by:
      onEnable in interface org.bukkit.plugin.Plugin
      Overrides:
      onEnable in class org.bukkit.plugin.java.JavaPlugin
    • loadFoundation Link icon

      public void loadFoundation(boolean reload)
    • loadConfig Link icon

      public void loadConfig(boolean reload)
    • loadLocalization Link icon

      public void loadLocalization(boolean reload)
    • loadPermissions Link icon

      public void loadPermissions(boolean reload)
    • onDisable Link icon

      public void onDisable()
      Specified by:
      onDisable in interface org.bukkit.plugin.Plugin
      Overrides:
      onDisable in class org.bukkit.plugin.java.JavaPlugin
    • getVersion Link icon

      public String getVersion()
    • isError Link icon

      public boolean isError()
      Returns:
      the error
    • isError Link icon

      @Internal public boolean isError(@NotNull TownyInitException.TownyError error)
    • addError Link icon

      @Internal public void addError(@NotNull TownyInitException.TownyError error)
    • removeError Link icon

      @Internal public boolean removeError(@NotNull TownyInitException.TownyError error)
    • getErrors Link icon

      @Internal @NotNull public @NotNull Collection<TownyInitException.TownyError> getErrors()
    • hasCache Link icon

      public boolean hasCache(org.bukkit.entity.Player player)
    • deleteCache Link icon

      public void deleteCache(Resident resident)
    • deleteCache Link icon

      public void deleteCache(org.bukkit.entity.Player player)
    • deleteCache Link icon

      public void deleteCache(UUID uuid)
    • getCache Link icon

      public PlayerCache getCache(org.bukkit.entity.Player player)
      Fetch the current players cache Creates a new one, if one doesn't exist.
      Parameters:
      player - - Player to get the current cache from.
      Returns:
      the current (or new) cache for this player.
    • getCacheOrNull Link icon

      public PlayerCache getCacheOrNull(@NotNull @NotNull UUID uuid)
      Parameters:
      uuid - - UUID of the player to get the cache for.
      Returns:
      The cache, or null if it doesn't exist.
    • resetCache Link icon

      public void resetCache()
      Resets all Online player caches, retaining their location info.
    • updateCache Link icon

      public void updateCache(WorldCoord worldCoord)
      Resets all Online player caches if their location equals this one
      Parameters:
      worldCoord - - the location to check for
    • updateCache Link icon

      public void updateCache()
      Resets all Online player caches if their location has changed
    • updateCache Link icon

      public void updateCache(org.bukkit.entity.Player player)
      Resets a specific players cache if their location has changed
      Parameters:
      player - - Player, whose cache is to be updated.
    • resetCache Link icon

      public void resetCache(org.bukkit.entity.Player player)
      Resets a specific players cache
      Parameters:
      player - - Player, whose cache is to be reset.
    • setPlayerMode Link icon

      @Deprecated public void setPlayerMode(org.bukkit.entity.Player player, String[] modes, boolean notify)
      Deprecated.
      Parameters:
      player - Player to act upon.
      modes - String[] of mode names to toggle.
      notify - whether to notify the player of their modes afterwards.
    • removePlayerMode Link icon

      @Deprecated public void removePlayerMode(org.bukkit.entity.Player player)
      Deprecated.
      since 0.100.4.6, use ResidentModeHandler.clearModes(Player) instead.
      Remove ALL current modes (and set the defaults)
      Parameters:
      player - Player, whose modes are to be reset (all removed).
    • removePlayerModes Link icon

      @Deprecated public void removePlayerModes(org.bukkit.entity.Player player)
      Deprecated.
      since 0.100.4.6, use ResidentModeHandler.clearModes(Player) instead.
      Remove ALL current modes.
      Parameters:
      player - - player, whose modes are to be reset (all removed).
    • getPlayerMode Link icon

      @Deprecated public List<String> getPlayerMode(org.bukkit.entity.Player player)
      Deprecated.
      since 0.100.4.6, use ResidentModeHandler.getModes(Player) instead.
      Fetch a list of all the players current modes.
      Parameters:
      player - - player, whose modes are to be listed, taken.
      Returns:
      list of modes
    • getPlayerMode Link icon

      public List<String> getPlayerMode(String name)
    • hasPlayerMode Link icon

      public boolean hasPlayerMode(org.bukkit.entity.Player player, String mode)
      Check if the player has a specific mode.
      Parameters:
      player - - Player to be checked
      mode - - Mode to be checked for within player.
      Returns:
      true if the mode is present.
    • hasPlayerMode Link icon

      public boolean hasPlayerMode(UUID uuid, String mode)
    • hasPlayerMode Link icon

      public boolean hasPlayerMode(String name, String mode)
    • getConfigPath Link icon

      public String getConfigPath()
    • getSetting Link icon

      public Object getSetting(String root)
    • getPlugin Link icon

      @NotNull public static @NotNull Towny getPlugin()
      Returns:
      the Towny instance
    • getAdventure Link icon

      public static net.kyori.adventure.platform.bukkit.BukkitAudiences getAdventure()
    • isTownyVersionSupported Link icon

      public static boolean isTownyVersionSupported(String version)
      Check if the version of Towny is newer than or equal to the supplied version. Used by other plugins to determine if Towny is of the required version level.
      Parameters:
      version - String version ie: "0.99.1.0"
      Returns:
      true if Towny's version is sufficient.
      Since:
      0.99.0.10.
    • isMinecraftVersionStillSupported Link icon

      public static boolean isMinecraftVersionStillSupported()
    • isFolia Link icon

      @Internal public boolean isFolia()
    • getScheduler Link icon

      @NotNull public @NotNull TaskScheduler getScheduler()
    • getServerWorld Link icon

      @Deprecated public org.bukkit.World getServerWorld(String name) throws NotRegisteredException
      Deprecated.
      since 0.100.2.13, unused by Towny for many years. Use BukkitTools.getWorld(String) instead.
      Parameters:
      name - Name of the World.
      Returns:
      a World
      Throws:
      NotRegisteredException - if the world doesn't exist.