├── .poggit.yml ├── LICENSE ├── README.md ├── icon.png ├── plugin.yml ├── resources ├── config.yml ├── messages.yml └── skyblock.json └── src └── RedCraftPE └── RedSkyBlock ├── Commands ├── SBCommand.php ├── SBSubCommand.php └── SubCommands │ ├── Accept.php │ ├── AddPermission.php │ ├── Ban.php │ ├── Banned.php │ ├── Chat.php │ ├── Create.php │ ├── CreateWorld.php │ ├── DecreaseSize.php │ ├── Delete.php │ ├── Demote.php │ ├── Fly.php │ ├── Help.php │ ├── IncreaseSize.php │ ├── Info.php │ ├── Invite.php │ ├── Kick.php │ ├── Leave.php │ ├── Level.php │ ├── Lock.php │ ├── Members.php │ ├── Name.php │ ├── OnIsland.php │ ├── Promote.php │ ├── Rank.php │ ├── Reload.php │ ├── Remove.php │ ├── RemovePermission.php │ ├── Rename.php │ ├── Reset.php │ ├── SetSize.php │ ├── SetSpawn.php │ ├── SetWorld.php │ ├── Setting.php │ ├── Settings.php │ ├── Teleport.php │ ├── TopIslands.php │ ├── Unban.php │ ├── Unlock.php │ ├── UpdateZone.php │ ├── Value.php │ ├── Visit.php │ └── ZoneTools.php ├── Island.php ├── SkyBlock.php ├── SkyblockListener.php ├── Tasks └── AutoSaveIslands.php └── Utils ├── ConfigManager.php ├── IslandManager.php ├── MessageConstructor.php └── ZoneManager.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/icon.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/resources/messages.yml -------------------------------------------------------------------------------- /resources/skyblock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/resources/skyblock.json -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SBCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SBCommand.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SBSubCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SBSubCommand.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Accept.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Accept.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/AddPermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/AddPermission.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Ban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Ban.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Banned.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Banned.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Chat.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Create.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Create.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/CreateWorld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/CreateWorld.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/DecreaseSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/DecreaseSize.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Delete.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Delete.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Demote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Demote.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Fly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Fly.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Help.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Help.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/IncreaseSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/IncreaseSize.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Info.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Info.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Invite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Invite.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Kick.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Kick.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Leave.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Leave.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Level.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Level.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Lock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Lock.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Members.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Members.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Name.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Name.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/OnIsland.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/OnIsland.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Promote.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Promote.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Rank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Rank.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Reload.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Reload.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Remove.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Remove.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/RemovePermission.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/RemovePermission.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Rename.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Rename.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Reset.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/SetSize.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/SetSize.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/SetSpawn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/SetSpawn.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/SetWorld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/SetWorld.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Setting.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Setting.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Settings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Settings.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Teleport.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Teleport.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/TopIslands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/TopIslands.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Unban.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Unban.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Unlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Unlock.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/UpdateZone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/UpdateZone.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Value.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Value.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Visit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/Visit.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Commands/SubCommands/ZoneTools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Commands/SubCommands/ZoneTools.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Island.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Island.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/SkyBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/SkyBlock.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/SkyblockListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/SkyblockListener.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Tasks/AutoSaveIslands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Tasks/AutoSaveIslands.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Utils/ConfigManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Utils/ConfigManager.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Utils/IslandManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Utils/IslandManager.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Utils/MessageConstructor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Utils/MessageConstructor.php -------------------------------------------------------------------------------- /src/RedCraftPE/RedSkyBlock/Utils/ZoneManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RedCraftGH/RedSkyBlock/HEAD/src/RedCraftPE/RedSkyBlock/Utils/ZoneManager.php --------------------------------------------------------------------------------