├── .github ├── FUNDING.yml └── ISSUE_TEMPLATE │ ├── bug-report.md │ ├── config.yml │ └── enhancement.md ├── .gitignore ├── LICENSE ├── README.md ├── pom.xml ├── randomteleport-hook ├── pom.xml └── src │ └── main │ └── java │ └── de │ └── themoep │ └── randomteleport │ └── hook │ ├── HookManager.java │ ├── MinecraftHook.java │ ├── PluginHook.java │ ├── ProtectionHook.java │ └── WorldborderHook.java ├── randomteleport-plugin-hooks ├── chunkyborder │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── ChunkyBorderHook.java ├── factions-uuid │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── Factions1_6_9_5_U0Hook.java ├── factions │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── Factions2Hook.java ├── griefdefender │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── GriefDefenderHook.java ├── griefprevention │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── GriefPreventionHook.java ├── pom.xml ├── redprotect │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── RedProtectHook.java ├── worldborder │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── WorldBorderHook.java ├── worldguard-6 │ ├── pom.xml │ └── src │ │ └── main │ │ └── java │ │ └── de │ │ └── themoep │ │ └── randomteleport │ │ └── hook │ │ └── plugin │ │ └── WorldGuard6Hook.java └── worldguard-7 │ ├── pom.xml │ └── src │ └── main │ └── java │ └── de │ └── themoep │ └── randomteleport │ └── hook │ └── plugin │ └── WorldGuard7Hook.java └── randomteleport-plugin ├── pom.xml └── src └── main ├── java └── de │ └── themoep │ └── randomteleport │ ├── RandomTeleport.java │ ├── RandomTeleportCommand.java │ ├── ValidatorRegistry.java │ ├── api │ └── RandomTeleportAPI.java │ ├── listeners │ └── SignListener.java │ └── searcher │ ├── RandomSearcher.java │ ├── options │ ├── AdditionalOptionParser.java │ ├── BooleanOptionParser.java │ ├── NotFoundException.java │ ├── OptionParser.java │ ├── PlayerNotFoundException.java │ ├── SimpleOptionParser.java │ └── WorldNotFoundException.java │ └── validators │ ├── BiomeValidator.java │ ├── BlockValidator.java │ ├── HeightValidator.java │ ├── LocationValidator.java │ ├── ProtectionValidator.java │ └── WorldborderValidator.java └── resources ├── config.yml ├── languages └── lang.en.yml └── plugin.yml /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug-report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/.github/ISSUE_TEMPLATE/bug-report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/enhancement.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/.github/ISSUE_TEMPLATE/enhancement.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # IntelliJ project files 2 | .idea 3 | *.iml 4 | out 5 | gen 6 | target 7 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/README.md -------------------------------------------------------------------------------- /pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/pom.xml -------------------------------------------------------------------------------- /randomteleport-hook/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-hook/pom.xml -------------------------------------------------------------------------------- /randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/HookManager.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/HookManager.java -------------------------------------------------------------------------------- /randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/MinecraftHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/MinecraftHook.java -------------------------------------------------------------------------------- /randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/PluginHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/PluginHook.java -------------------------------------------------------------------------------- /randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/ProtectionHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/ProtectionHook.java -------------------------------------------------------------------------------- /randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/WorldborderHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-hook/src/main/java/de/themoep/randomteleport/hook/WorldborderHook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/chunkyborder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/chunkyborder/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/chunkyborder/src/main/java/de/themoep/randomteleport/hook/plugin/ChunkyBorderHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/chunkyborder/src/main/java/de/themoep/randomteleport/hook/plugin/ChunkyBorderHook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/factions-uuid/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/factions-uuid/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/factions-uuid/src/main/java/de/themoep/randomteleport/hook/plugin/Factions1_6_9_5_U0Hook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/factions-uuid/src/main/java/de/themoep/randomteleport/hook/plugin/Factions1_6_9_5_U0Hook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/factions/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/factions/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/factions/src/main/java/de/themoep/randomteleport/hook/plugin/Factions2Hook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/factions/src/main/java/de/themoep/randomteleport/hook/plugin/Factions2Hook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/griefdefender/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/griefdefender/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/griefdefender/src/main/java/de/themoep/randomteleport/hook/plugin/GriefDefenderHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/griefdefender/src/main/java/de/themoep/randomteleport/hook/plugin/GriefDefenderHook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/griefprevention/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/griefprevention/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/griefprevention/src/main/java/de/themoep/randomteleport/hook/plugin/GriefPreventionHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/griefprevention/src/main/java/de/themoep/randomteleport/hook/plugin/GriefPreventionHook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/redprotect/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/redprotect/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/redprotect/src/main/java/de/themoep/randomteleport/hook/plugin/RedProtectHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/redprotect/src/main/java/de/themoep/randomteleport/hook/plugin/RedProtectHook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/worldborder/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/worldborder/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/worldborder/src/main/java/de/themoep/randomteleport/hook/plugin/WorldBorderHook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/worldborder/src/main/java/de/themoep/randomteleport/hook/plugin/WorldBorderHook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/worldguard-6/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/worldguard-6/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/worldguard-6/src/main/java/de/themoep/randomteleport/hook/plugin/WorldGuard6Hook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/worldguard-6/src/main/java/de/themoep/randomteleport/hook/plugin/WorldGuard6Hook.java -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/worldguard-7/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/worldguard-7/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin-hooks/worldguard-7/src/main/java/de/themoep/randomteleport/hook/plugin/WorldGuard7Hook.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin-hooks/worldguard-7/src/main/java/de/themoep/randomteleport/hook/plugin/WorldGuard7Hook.java -------------------------------------------------------------------------------- /randomteleport-plugin/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/pom.xml -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/RandomTeleport.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/RandomTeleport.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/RandomTeleportCommand.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/RandomTeleportCommand.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/ValidatorRegistry.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/ValidatorRegistry.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/api/RandomTeleportAPI.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/api/RandomTeleportAPI.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/listeners/SignListener.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/listeners/SignListener.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/RandomSearcher.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/RandomSearcher.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/AdditionalOptionParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/AdditionalOptionParser.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/BooleanOptionParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/BooleanOptionParser.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/NotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/NotFoundException.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/OptionParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/OptionParser.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/PlayerNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/PlayerNotFoundException.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/SimpleOptionParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/SimpleOptionParser.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/WorldNotFoundException.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/options/WorldNotFoundException.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/BiomeValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/BiomeValidator.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/BlockValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/BlockValidator.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/HeightValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/HeightValidator.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/LocationValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/LocationValidator.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/ProtectionValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/ProtectionValidator.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/WorldborderValidator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/java/de/themoep/randomteleport/searcher/validators/WorldborderValidator.java -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/resources/config.yml -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/resources/languages/lang.en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/resources/languages/lang.en.yml -------------------------------------------------------------------------------- /randomteleport-plugin/src/main/resources/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Phoenix616/RandomTeleport/HEAD/randomteleport-plugin/src/main/resources/plugin.yml --------------------------------------------------------------------------------