├── .gitignore ├── README.md ├── config.yml ├── plugin.yml ├── pom.xml └── src └── subside └── plugins └── koth ├── KothPlugin.java ├── areas ├── Area.java ├── Capable.java └── Koth.java ├── captureentities ├── CapInfo.java ├── Capper.java ├── CappingFactionNormal.java ├── CappingFactionUUID.java ├── CappingFeudalKingdom.java ├── CappingGang.java ├── CappingGroup.java ├── CappingKingdom.java ├── CappingLegacyFactions.java ├── CappingMCMMOParty.java ├── CappingPlayer.java └── CaptureTypeRegistry.java ├── commands ├── AbstractCommand.java ├── CommandAsMember.java ├── CommandChange.java ├── CommandCreate.java ├── CommandDatatable.java ├── CommandEdit.java ├── CommandEnd.java ├── CommandHandler.java ├── CommandIgnore.java ├── CommandInfo.java ├── CommandList.java ├── CommandLoot.java ├── CommandMode.java ├── CommandNext.java ├── CommandReload.java ├── CommandRemove.java ├── CommandSchedule.java ├── CommandStart.java ├── CommandStop.java ├── CommandTop.java ├── CommandTp.java └── CommandVersion.java ├── datatable ├── DataTable.java ├── IDatabase.java ├── MySQL.java ├── SQLite.java └── listener │ ├── KothWinListener.java │ └── PlayerIgnoreListener.java ├── events ├── AbstractEvent.java ├── KothCapEvent.java ├── KothChestCreationEvent.java ├── KothEndEvent.java ├── KothInitializeEvent.java ├── KothLeftEvent.java ├── KothOpenChestEvent.java ├── KothPluginInitializationEvent.java ├── KothPostUpdateEvent.java ├── KothPreUpdateEvent.java └── KothStartEvent.java ├── exceptions ├── AnotherKothAlreadyRunningException.java ├── AreaAlreadyExistException.java ├── AreaNotExistException.java ├── CommandMessageException.java ├── IllegalKothNameException.java ├── KothAlreadyExistException.java ├── KothAlreadyRunningException.java ├── KothException.java ├── KothNotExistException.java ├── LootAlreadyExistException.java └── LootNotExistException.java ├── gamemodes ├── GamemodeRegistry.java ├── KothClassic.java ├── KothClassicV2.java ├── KothConquest.java ├── RunningKoth.java ├── StartParams.java └── TimeObject.java ├── hooks ├── AbstractHook.java ├── AbstractRangeHook.java ├── BossbarHook.java ├── EssentialsVanishHook.java ├── FeatherboardHook.java ├── HookManager.java ├── PlaceholderAPIHook.java ├── PvPManagerHook.java └── VanishHook.java ├── loot ├── Loot.java └── LootHandler.java ├── modules ├── AbstractModule.java ├── CacheHandler.java ├── ConfigHandler.java ├── EventListener.java ├── KothHandler.java ├── Lang.java └── VersionChecker.java ├── scheduler ├── Day.java ├── MapRotation.java ├── Schedule.java └── ScheduleHandler.java └── utils ├── IPerm.java ├── JSONLoader.java ├── JSONSerializable.java ├── MessageBuilder.java ├── Perm.java └── Utils.java /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/README.md -------------------------------------------------------------------------------- /config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/config.yml -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/plugin.yml -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/pom.xml -------------------------------------------------------------------------------- /src/subside/plugins/koth/KothPlugin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/KothPlugin.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/areas/Area.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/areas/Area.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/areas/Capable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/areas/Capable.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/areas/Koth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/areas/Koth.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CapInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CapInfo.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/Capper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/Capper.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingFactionNormal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingFactionNormal.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingFactionUUID.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingFactionUUID.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingFeudalKingdom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingFeudalKingdom.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingGang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingGang.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingGroup.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingGroup.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingKingdom.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingKingdom.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingLegacyFactions.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingLegacyFactions.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingMCMMOParty.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingMCMMOParty.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CappingPlayer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CappingPlayer.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/captureentities/CaptureTypeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/captureentities/CaptureTypeRegistry.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/AbstractCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/AbstractCommand.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandAsMember.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandAsMember.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandChange.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandChange.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandCreate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandCreate.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandDatatable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandDatatable.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandEdit.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandEdit.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandEnd.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandEnd.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandHandler.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandIgnore.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandIgnore.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandInfo.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandList.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandList.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandLoot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandLoot.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandMode.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandMode.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandNext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandNext.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandReload.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandReload.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandRemove.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandRemove.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandSchedule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandSchedule.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandStart.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandStart.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandStop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandStop.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandTop.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandTop.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandTp.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandTp.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/commands/CommandVersion.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/commands/CommandVersion.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/datatable/DataTable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/datatable/DataTable.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/datatable/IDatabase.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/datatable/IDatabase.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/datatable/MySQL.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/datatable/MySQL.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/datatable/SQLite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/datatable/SQLite.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/datatable/listener/KothWinListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/datatable/listener/KothWinListener.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/datatable/listener/PlayerIgnoreListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/datatable/listener/PlayerIgnoreListener.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/AbstractEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/AbstractEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothCapEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothCapEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothChestCreationEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothChestCreationEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothEndEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothEndEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothInitializeEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothInitializeEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothLeftEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothLeftEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothOpenChestEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothOpenChestEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothPluginInitializationEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothPluginInitializationEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothPostUpdateEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothPostUpdateEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothPreUpdateEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothPreUpdateEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/events/KothStartEvent.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/events/KothStartEvent.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/AnotherKothAlreadyRunningException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/AnotherKothAlreadyRunningException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/AreaAlreadyExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/AreaAlreadyExistException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/AreaNotExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/AreaNotExistException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/CommandMessageException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/CommandMessageException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/IllegalKothNameException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/IllegalKothNameException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/KothAlreadyExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/KothAlreadyExistException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/KothAlreadyRunningException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/KothAlreadyRunningException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/KothException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/KothException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/KothNotExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/KothNotExistException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/LootAlreadyExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/LootAlreadyExistException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/exceptions/LootNotExistException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/exceptions/LootNotExistException.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/gamemodes/GamemodeRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/gamemodes/GamemodeRegistry.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/gamemodes/KothClassic.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/gamemodes/KothClassic.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/gamemodes/KothClassicV2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/gamemodes/KothClassicV2.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/gamemodes/KothConquest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/gamemodes/KothConquest.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/gamemodes/RunningKoth.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/gamemodes/RunningKoth.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/gamemodes/StartParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/gamemodes/StartParams.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/gamemodes/TimeObject.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/gamemodes/TimeObject.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/AbstractHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/AbstractHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/AbstractRangeHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/AbstractRangeHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/BossbarHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/BossbarHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/EssentialsVanishHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/EssentialsVanishHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/FeatherboardHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/FeatherboardHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/HookManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/HookManager.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/PlaceholderAPIHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/PlaceholderAPIHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/PvPManagerHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/PvPManagerHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/hooks/VanishHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/hooks/VanishHook.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/loot/Loot.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/loot/Loot.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/loot/LootHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/loot/LootHandler.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/modules/AbstractModule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/modules/AbstractModule.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/modules/CacheHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/modules/CacheHandler.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/modules/ConfigHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/modules/ConfigHandler.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/modules/EventListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/modules/EventListener.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/modules/KothHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/modules/KothHandler.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/modules/Lang.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/modules/Lang.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/modules/VersionChecker.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/modules/VersionChecker.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/scheduler/Day.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/scheduler/Day.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/scheduler/MapRotation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/scheduler/MapRotation.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/scheduler/Schedule.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/scheduler/Schedule.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/scheduler/ScheduleHandler.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/scheduler/ScheduleHandler.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/utils/IPerm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/utils/IPerm.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/utils/JSONLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/utils/JSONLoader.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/utils/JSONSerializable.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/utils/JSONSerializable.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/utils/MessageBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/utils/MessageBuilder.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/utils/Perm.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/utils/Perm.java -------------------------------------------------------------------------------- /src/subside/plugins/koth/utils/Utils.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/SubSide/KOTH/HEAD/src/subside/plugins/koth/utils/Utils.java --------------------------------------------------------------------------------