├── .poggit.yml ├── 1vs1 ├── plugin.yml ├── resources │ └── messages.yml └── src │ └── Minifixio │ └── onevsone │ ├── ArenaManager.php │ ├── EventsManager.php │ ├── OneVsOne.php │ ├── command │ ├── JoinCommand.php │ └── ReferenceArenaCommand.php │ ├── model │ ├── Arena.php │ ├── CountDownToDuelTask.php │ ├── RoundCheckTask.php │ └── SignRefreshTask.php │ └── utils │ └── PluginUtils.php ├── 2vs2 ├── LICENSE ├── README.md ├── plugin.yml ├── resources │ └── messages.yml └── src │ └── Minifixio │ └── onevsone │ ├── ArenaManager.php │ ├── EventsManager.php │ ├── OneVsOne.php │ ├── command │ ├── JoinCommand.php │ └── ReferenceArenaCommand.php │ ├── model │ ├── Arena.php │ ├── CountDownToDuelTask.php │ ├── RoundCheckTask.php │ └── SignRefreshTask.php │ └── utils │ └── PluginUtils.php ├── 345-AllSigns-f4d20 ├── desktop.ini ├── plugin.yml ├── resources │ └── config.yml └── src │ └── surva │ └── allsigns │ ├── AllSigns.php │ ├── EventListener.php │ └── tasks │ └── SignUpdate.php ├── 345-AlwaysSpawn-a1cd2 ├── desktop.ini ├── plugin.yml └── src │ └── philipshilling │ └── alwaysspawn │ └── Loader.php ├── AllSigns ├── README.md ├── icon.png ├── plugin.yml ├── resources │ ├── config.yml │ └── languages │ │ ├── de.yml │ │ └── en.yml └── src │ └── surva │ └── allsigns │ ├── AllSigns.php │ ├── EventListener.php │ └── tasks │ └── SignUpdate.php ├── BoostPad ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── BoxOfDevs │ └── BPad │ └── Main.php ├── Buycraft ├── CONTRIBUTING.md ├── LICENSE.md ├── README.md ├── build-plugin.sh ├── icon.png ├── phpunit.xml ├── plugin.yml ├── resources │ └── config.yml └── src │ └── Buycraft │ └── PocketMine │ ├── BuycraftListener.php │ ├── BuycraftPlugin.php │ ├── Commands │ ├── BuycraftCommand.php │ └── SecretVerificationTask.php │ ├── Execution │ ├── CommandExecutor.php │ ├── DeleteCommandsAsyncTask.php │ ├── DeleteCommandsTask.php │ ├── DuePlayerCheck.php │ ├── ImmediateExecutionRunner.php │ ├── PlayerCommandExecutor.php │ └── QueuedCommand.php │ ├── PluginApi.php │ └── Util │ ├── AnalyticsSend.php │ ├── FinalizeReportTask.php │ ├── ReportUtil.php │ └── RunAsyncTask.php ├── CombatLogger ├── LICENSE ├── README.md ├── Settings.yml ├── plugin.yml ├── resources │ └── Settings.yml └── src │ └── jacknoordhuis │ └── combatlogger │ ├── CombatLogger.php │ ├── EventListener.php │ ├── MessageManager.php │ └── TaggedHeartbeatTask.php ├── CrateKeys ├── README.md ├── plugin.yml ├── resources │ ├── config.yml │ └── messages.yml └── src │ └── Primus │ └── CrateKeys │ ├── EventListener.php │ ├── Main.php │ └── event │ ├── PlayerCrateKeyRecieveEvent.php │ └── PlayerCrateKeyUseEvent.php ├── CustomHelp ├── LICENSE ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── CustomHelp │ ├── Commands │ └── CommandHelp.php │ └── CustomHelp.php ├── EnderChest ├── LICENSE ├── README.md ├── plugin.yml └── src │ └── enderchest │ ├── DataBase.php │ ├── EnderChest.php │ ├── EnderChestInventory.php │ ├── EnderChestTile.php │ └── Loader.php ├── FormAPI ├── plugin.yml └── src │ └── jojoe77777 │ └── FormAPI │ ├── CustomForm.php │ ├── Form.php │ ├── FormAPI.php │ ├── ModalForm.php │ └── SimpleForm.php ├── FormAuth ├── LICENSE ├── README.md ├── plugin.yml ├── resources │ ├── config.yml │ ├── messages-de.yml │ ├── messages-en.yml │ ├── messages-es.yml │ ├── messages-ru.yml │ ├── messages-uk.yml │ └── messages-zh.yml └── src │ └── dirouc │ └── FormAuth │ ├── FormAuth.php │ └── Messages.php ├── FormShop ├── README.md ├── plugin.yml ├── resources │ ├── messages.yml │ └── shops.yml └── src │ └── ru │ └── universalcrew │ └── formshop │ ├── Home.php │ ├── commands │ └── ShopCommand.php │ └── utils │ ├── Forms.php │ ├── Pay.php │ └── Provider.php ├── GrabBagCommands ├── LICENSE ├── README.md ├── media │ └── GrabBag-icon.png ├── plugin.yml ├── resources │ └── messages │ │ ├── messages.ini │ │ └── spa.ini └── src │ ├── aliuly │ └── grabbag │ │ ├── BcTpMgr.php │ │ ├── BloodMgr.php │ │ ├── CmdAfterAt.php │ │ ├── CmdAlias.php │ │ ├── CmdAs.php │ │ ├── CmdBlowUp.php │ │ ├── CmdBurn.php │ │ ├── CmdChatMgr.php │ │ ├── CmdClearInv.php │ │ ├── CmdCrash.php │ │ ├── CmdEntities.php │ │ ├── CmdFTServers.php │ │ ├── CmdFly.php │ │ ├── CmdFollowMgr.php │ │ ├── CmdFreezeMgr.php │ │ ├── CmdGet.php │ │ ├── CmdGmx.php │ │ ├── CmdHeal.php │ │ ├── CmdInvisible.php │ │ ├── CmdMuteMgr.php │ │ ├── CmdOpMsg.php │ │ ├── CmdOps.php │ │ ├── CmdPermMgr.php │ │ ├── CmdPlayers.php │ │ ├── CmdPluginMgr.php │ │ ├── CmdPrefixMgr.php │ │ ├── CmdQuery.php │ │ ├── CmdRcon.php │ │ ├── CmdReOp.php │ │ ├── CmdRegMgr.php │ │ ├── CmdSelMgr.php │ │ ├── CmdSetArmor.php │ │ ├── CmdShieldMgr.php │ │ ├── CmdShowInv.php │ │ ├── CmdSkinner.php │ │ ├── CmdSlay.php │ │ ├── CmdSpawn.php │ │ ├── CmdSpectator.php │ │ ├── CmdSrvModeMgr.php │ │ ├── CmdSummon.php │ │ ├── CmdThrow.php │ │ ├── CmdTimings.php │ │ ├── CmdTpStack.php │ │ ├── CmdWhois.php │ │ ├── JoinMgr.php │ │ ├── Main.php │ │ ├── RepeatMgr.php │ │ ├── ServerList.php │ │ ├── TransferMgr.php │ │ ├── api │ │ ├── GbAddServerEvent.php │ │ ├── GbRemoveServerEvent.php │ │ ├── GrabBag.php │ │ └── GrabBagEvent.php │ │ └── common │ │ ├── ArmorItems.php │ │ ├── BasicCli.php │ │ ├── BasicHelp.php │ │ ├── BasicPlugin.php │ │ ├── Cmd.php │ │ ├── CmdSelector.php │ │ ├── ExpandVars.php │ │ ├── FileUtils.php │ │ ├── InvUtils.php │ │ ├── ItemName.php │ │ ├── MPMU.php │ │ ├── MoneyAPI.php │ │ ├── PMScript.php │ │ ├── PermUtils.php │ │ ├── PluginAsyncTask.php │ │ ├── PluginCallbackTask.php │ │ ├── Rcon.php │ │ ├── RconTask.php │ │ ├── Session.php │ │ ├── SubCommandMap.php │ │ ├── mc.php │ │ └── selectors │ │ ├── All.php │ │ ├── AllEntity.php │ │ ├── BaseSelector.php │ │ └── Random.php │ └── xPaw │ ├── MinecraftQuery.php │ └── MinecraftQueryException.php ├── HealthStatus ├── README.md ├── config.yml ├── plugin.yml ├── resources │ └── config.yml └── src │ └── HealthStatus │ ├── GroupChange.php │ ├── Main.php │ ├── NickChange.php │ └── Task.php ├── JoinSystem ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── JoinSystem │ ├── Commands │ └── CommandHub.php │ ├── Events │ ├── PlayerJoin.php │ └── PlayerQuit.php │ └── JoinSystem.php ├── KillCash ├── LICENSE ├── README.md ├── config.yml ├── plugin.yml └── src │ └── Praxthisnovcht │ └── KillCash │ └── Main.php ├── KitUI ├── LICENSE ├── README.md ├── Travis.php ├── icon.png ├── plugin.yml ├── resources │ ├── config.yml │ └── kits.yml └── src │ └── Infernus101 │ └── KitUI │ ├── Kit.php │ ├── Main.php │ ├── PlayerEvents.php │ ├── UI │ ├── Handler.php │ ├── Window.php │ └── windows │ │ ├── KitError.php │ │ ├── KitInfo.php │ │ └── KitMainMenu.php │ ├── lang │ └── LangManager.php │ └── tasks │ └── CoolDownTask.php ├── KnockbackFFA ├── LICENSE.txt ├── ReadMe.md ├── plugin.yml ├── resources │ ├── config.yml │ ├── deu.ini │ ├── eng.ini │ ├── fra.ini │ ├── how_to_use.txt │ └── rus.ini └── src │ └── KnockbackFFA │ ├── KnockbackFFA.php │ └── checkLevel.php ├── LuckyDrop ├── LICENSE ├── plugin.yml └── src │ └── ArmTheDev │ └── ArmTheDev.php ├── MaskShop-UI ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── MASKshop │ └── Main.php ├── MineReset ├── LICENSE ├── README.md ├── entry.php ├── meta │ └── minereset.png ├── plugin.yml └── src │ └── falkirks │ └── minereset │ ├── Mine.php │ ├── MineManager.php │ ├── MineReset.php │ ├── ResetProgressManager.php │ ├── command │ ├── AboutCommand.php │ ├── CreateCommand.php │ ├── DestroyCommand.php │ ├── ListCommand.php │ ├── MineCommand.php │ ├── ResetAllCommand.php │ ├── ResetCommand.php │ ├── SetCommand.php │ └── SubCommand.php │ ├── listener │ ├── CreationListener.php │ ├── MineCreationSession.php │ └── RegionBlockerListener.php │ ├── store │ ├── AbstractStore.php │ ├── DataStore.php │ ├── EntityStore.php │ ├── Reloadable.php │ ├── Saveable.php │ └── YAMLStore.php │ └── task │ ├── AboutPullTask.php │ └── ResetTask.php ├── Multi-Inv ├── LICENSE ├── plugin.yml ├── resources │ └── config.yml └── src │ └── jasonwynn10 │ └── Minv │ └── Main.php ├── MultiWorld ├── plugin.yml ├── resources │ ├── config.yml │ └── languages │ │ ├── Czech.yml │ │ ├── English.yml │ │ ├── German.yml │ │ └── Russian.yml └── src │ └── multiworld │ ├── MultiWorld.php │ ├── command │ └── MultiWorldCommand.php │ ├── generator │ ├── ender │ │ ├── EnderGenerator.php │ │ └── populator │ │ │ └── EnderPilar.php │ └── void │ │ └── VoidGenerator.php │ ├── task │ └── MultiWorldTask.php │ ├── util │ ├── ConfigManager.php │ ├── Data.php │ ├── DataListener.php │ ├── DataManager.php │ ├── DataTask.php │ └── LanguageManager.php │ └── worldedit │ └── WorldEdit.php ├── PVPlevelRPG ├── lp │ ├── byzikenpe.yml │ ├── console.yml │ └── mrreskill.yml ├── plugin.yml └── src │ └── LevelMain │ ├── LevelCommand.php │ └── Main.php ├── PeacefulSpawn ├── plugin.yml └── src │ └── LDX │ └── PeacefulSpawn │ └── Main.php ├── PerWorldChat ├── LICENSE ├── README.md ├── config.yml ├── plugin.yml ├── resources │ └── config.yml └── src │ └── PerWorldChat │ └── Main.php ├── PlayerVaults ├── LICENSE ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── PlayerVaults │ ├── PlayerVaults.php │ ├── Provider.php │ ├── Task │ ├── DeleteVaultTask.php │ ├── FetchInventoryTask.php │ └── SaveInventoryTask.php │ └── Vault │ ├── Vault.php │ └── VaultInventory.php ├── ProfileUI ├── LICENSE ├── README.md ├── icon.png ├── plugin.yml ├── resources │ └── config.yml └── src │ └── Infernus101 │ ├── Main.php │ ├── PlayerEvents.php │ ├── tasks │ └── SaveTask.php │ └── window │ ├── Handler.php │ ├── ProfileWindow.php │ └── Window.php ├── README.md ├── RankUp ├── LICENSE ├── README.md ├── entry.php ├── plugin.yml ├── resources │ ├── config.yml │ └── groups.yml └── src │ └── rankup │ ├── LanguageConfig.php │ ├── RankUp.php │ ├── command │ └── RankUpCommand.php │ ├── doesgroups │ ├── Group.php │ └── RankUpDoesGroups.php │ ├── economy │ ├── BaseEconomy.php │ ├── Economy.php │ ├── EconomyLoader.php │ ├── EssentialsEconomy.php │ └── PocketMoney.php │ ├── permission │ ├── BasePermissionManager.php │ ├── PermissionLoader.php │ ├── PurePerms.php │ └── RankUpDoesGroups.php │ └── rank │ ├── Rank.php │ └── RankStore.php ├── ReportGUI ├── README.md ├── plugin.yml ├── resources │ ├── config.yml │ └── language.yml ├── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png └── src │ └── Taylcd │ └── ReportGUI │ ├── ReportGUI.php │ └── SaveTask.php ├── ReportUI ├── README.md ├── plugin.yml ├── resources │ ├── config.yml │ └── language.yml ├── screenshots │ ├── 1.png │ ├── 2.png │ ├── 3.png │ └── 4.png └── src │ └── Taylcd │ └── ReportUI │ ├── ReportUI.php │ ├── event │ ├── Listener.php │ ├── PlayerReportEvent.php │ └── ReportProcessedEvent.php │ └── task │ └── SaveTask.php ├── RestartMe ├── LICENSE.txt ├── plugin.yml ├── resources │ ├── config.yml │ └── values.txt └── src │ └── restartme │ ├── RestartMe.php │ ├── command │ └── RestartMeCommand.php │ ├── task │ ├── AutoBroadcastTask.php │ ├── CheckMemoryTask.php │ └── RestartServerTask.php │ └── utils │ └── MemoryChecker.php ├── SkyBlock ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── SkyBlock │ ├── PluginHearbeat.php │ ├── SkyBlock.php │ ├── SkyBlockListener.php │ ├── Utils.php │ ├── chat │ ├── Chat.php │ └── ChatHandler.php │ ├── command │ └── SkyBlockCommand.php │ ├── generator │ ├── SkyBlockGenerator.php │ ├── SkyBlockGeneratorManager.php │ └── generators │ │ └── BasicIsland.php │ ├── invitation │ ├── Invitation.php │ └── InvitationHandler.php │ ├── island │ ├── Island.php │ └── IslandManager.php │ ├── reset │ ├── Reset.php │ └── ResetHandler.php │ └── skyblock │ └── SkyBlockManager.php ├── SkyBlockPE ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── SkyBlock │ ├── EventListener.php │ ├── Main.php │ ├── PluginHearbeat.php │ ├── Utils.php │ ├── chat │ ├── Chat.php │ └── ChatHandler.php │ ├── command │ └── SkyBlockCommand.php │ ├── generator │ ├── SkyBlockGenerator.php │ ├── SkyBlockGeneratorManager.php │ └── generators │ │ └── BasicIsland.php │ ├── invitation │ ├── Invitation.php │ └── InvitationHandler.php │ ├── island │ ├── Island.php │ └── IslandManager.php │ ├── reset │ ├── Reset.php │ └── ResetHandler.php │ └── skyblock │ └── SkyBlockManager.php ├── SoupFFA ├── LICENSE.txt ├── ReadME.md ├── plugin.yml ├── resources │ ├── ara.ini │ ├── chi.ini │ ├── config.yml │ ├── deu.ini │ ├── eng.ini │ ├── fra.ini │ ├── spa │ ├── translate_template.ini │ └── tur.ini └── src │ └── SoupFFA │ └── SoupFFA.php ├── StatsPE-master ├── LICENSE ├── README.md ├── build.php ├── compiledevtools.php ├── plugin.yml ├── resources │ ├── English.yml │ ├── German.yml │ ├── Russian.yml │ └── config.yml └── src │ └── SalmonDE │ └── StatsPE │ ├── Base.php │ ├── Commands │ ├── StatsCmd.php │ └── StatsPECmd.php │ ├── EventListener.php │ ├── Events │ ├── DataEvent.php │ ├── DataReceiveEvent.php │ ├── DataSaveEvent.php │ ├── EntryEvent.php │ └── StatsPE_Event.php │ ├── FloatingTexts │ ├── EventListener.php │ ├── Events │ │ └── FloatingTextEvent.php │ ├── FloatingText.php │ └── FloatingTextManager.php │ ├── Providers │ ├── DataProvider.php │ ├── Entry.php │ ├── JSONProvider.php │ └── MySQLProvider.php │ ├── Tasks │ ├── SaveTask.php │ └── SaveToDbTask.php │ └── Utils.php ├── SuperVanish ├── LICENSE ├── README.md ├── plugin.yml └── src │ └── erkam2002 │ └── Vanish.php ├── TapToDo ├── LICENSE ├── README.md ├── entry.php ├── plugin.yml ├── resources │ └── blocks.yml └── src │ └── taptodo │ ├── Block.php │ ├── Command.php │ ├── ConfigUpdater.php │ └── TapToDo.php ├── TeaSpoon ├── README.md ├── plugin.yml ├── resources │ └── config.yml └── src │ └── CortexPE │ ├── EventListener.php │ ├── LevelManager.php │ ├── Main.php │ ├── Player.php │ ├── Server.php │ ├── Utils.php │ ├── block │ ├── BlockManager.php │ ├── EndPortal.php │ ├── EnderChest.php │ ├── Obsidian.php │ └── Portal.php │ ├── commands │ ├── CommandManager.php │ ├── KillCommand.php │ └── WorldCommand.php │ ├── entity │ ├── Bat.php │ ├── Blaze.php │ ├── CaveSpider.php │ ├── Chicken.php │ ├── Cow.php │ ├── Creeper.php │ ├── Donkey.php │ ├── ElderGuardian.php │ ├── EnderDragon.php │ ├── Enderman.php │ ├── Endermite.php │ ├── EntityManager.php │ ├── Evoker.php │ ├── Ghast.php │ ├── Guardian.php │ ├── Horse.php │ ├── Human.php │ ├── Husk.php │ ├── IronGolem.php │ ├── Lightning.php │ ├── Llama.php │ ├── MagmaCube.php │ ├── Mooshroom.php │ ├── Mule.php │ ├── Ocelot.php │ ├── Pig.php │ ├── PigZombie.php │ ├── PolarBear.php │ ├── Rabbit.php │ ├── Sheep.php │ ├── Shulker.php │ ├── Silverfish.php │ ├── Skeleton.php │ ├── SkeletonHorse.php │ ├── Slime.php │ ├── SnowGolem.php │ ├── Spider.php │ ├── Stray.php │ ├── Vex.php │ ├── Vindicator.php │ ├── Witch.php │ ├── Wither.php │ ├── WitherSkeleton.php │ ├── Wolf.php │ ├── XPOrb.php │ ├── ZombieHorse.php │ ├── ZombieVillager.php │ └── projectile │ │ ├── Egg.php │ │ ├── EnchantingBottle.php │ │ ├── EnderPearl.php │ │ ├── Snowball.php │ │ └── SplashPotion.php │ ├── inventory │ └── EnderChestInventory.php │ ├── item │ ├── EnchantingBottle.php │ ├── EnderPearl.php │ ├── FireCharge.php │ ├── FlintSteel.php │ ├── ItemManager.php │ ├── Potion.php │ ├── SplashPotion.php │ └── enchantment │ │ └── Enchantment.php │ ├── level │ ├── generator │ │ ├── VoidGenerator.php │ │ ├── biome │ │ │ └── Biome.php │ │ ├── ender │ │ │ ├── Ender.php │ │ │ ├── biome │ │ │ │ └── EnderBiome.php │ │ │ └── populator │ │ │ │ └── EnderPilar.php │ │ └── hell │ │ │ └── Nether.php │ ├── particle │ │ └── SpellParticle.php │ ├── populator │ │ ├── GroundFire.php │ │ ├── NetherGlowStone.php │ │ ├── NetherLava.php │ │ └── NetherOre.php │ └── sound │ │ └── ExpPickupSound.php │ ├── plugin │ ├── AllAPI │ │ ├── FolderPluginLoader.php │ │ ├── PharPluginLoader.php │ │ └── ScriptPluginLoader.php │ └── AllAPILoaderManager.php │ ├── task │ └── CheckPlayersTask.php │ └── tile │ ├── EnderChest.php │ └── Tile.php ├── Texter ├── ISSUE_TEMPLATE.md ├── LICENSE ├── README.md ├── assets │ ├── Example.jpg │ ├── Logo.png │ └── Texter.png ├── plugin.yml ├── resources │ ├── config.yml │ ├── crfts.json │ └── fts.json └── src │ └── Texter │ ├── EventListener.php │ ├── Main.php │ ├── TexterApi.php │ ├── commands │ ├── TxtAdmCommand.php │ └── TxtCommand.php │ ├── language │ ├── Lang.php │ ├── eng.json │ └── jpn.json │ ├── task │ ├── CheckUpdateTask.php │ └── WorldGetTask.php │ ├── text │ ├── CantRemoveFloatingText.php │ ├── FloatingText.php │ └── Text.php │ └── utils │ └── TunedConfig.php ├── TimeCommander ├── config.yml ├── plugin.yml ├── resources │ └── config.yml └── src │ └── LDX │ └── TimeCommander │ ├── Main.php │ └── TimeCommand.php └── WorldTpUI ├── LICENSE ├── README.md ├── config.yml ├── plugin.yml └── src └── Zero └── WorldTpUI ├── Command └── wtpuiCommand.php ├── Main.php └── UI ├── CustomUI.php ├── ListenerUI.php └── UI.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/.poggit.yml -------------------------------------------------------------------------------- /1vs1/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/plugin.yml -------------------------------------------------------------------------------- /1vs1/resources/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/resources/messages.yml -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/ArenaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/ArenaManager.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/EventsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/EventsManager.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/OneVsOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/OneVsOne.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/command/JoinCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/command/JoinCommand.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/command/ReferenceArenaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/command/ReferenceArenaCommand.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/model/Arena.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/model/Arena.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/model/CountDownToDuelTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/model/CountDownToDuelTask.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/model/RoundCheckTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/model/RoundCheckTask.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/model/SignRefreshTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/model/SignRefreshTask.php -------------------------------------------------------------------------------- /1vs1/src/Minifixio/onevsone/utils/PluginUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/1vs1/src/Minifixio/onevsone/utils/PluginUtils.php -------------------------------------------------------------------------------- /2vs2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/LICENSE -------------------------------------------------------------------------------- /2vs2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/README.md -------------------------------------------------------------------------------- /2vs2/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/plugin.yml -------------------------------------------------------------------------------- /2vs2/resources/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/resources/messages.yml -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/ArenaManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/ArenaManager.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/EventsManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/EventsManager.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/OneVsOne.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/OneVsOne.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/command/JoinCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/command/JoinCommand.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/command/ReferenceArenaCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/command/ReferenceArenaCommand.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/model/Arena.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/model/Arena.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/model/CountDownToDuelTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/model/CountDownToDuelTask.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/model/RoundCheckTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/model/RoundCheckTask.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/model/SignRefreshTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/model/SignRefreshTask.php -------------------------------------------------------------------------------- /2vs2/src/Minifixio/onevsone/utils/PluginUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/2vs2/src/Minifixio/onevsone/utils/PluginUtils.php -------------------------------------------------------------------------------- /345-AllSigns-f4d20/desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | LocalizedResourceName=AllSigns 3 | -------------------------------------------------------------------------------- /345-AllSigns-f4d20/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/345-AllSigns-f4d20/plugin.yml -------------------------------------------------------------------------------- /345-AllSigns-f4d20/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/345-AllSigns-f4d20/resources/config.yml -------------------------------------------------------------------------------- /345-AllSigns-f4d20/src/surva/allsigns/AllSigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/345-AllSigns-f4d20/src/surva/allsigns/AllSigns.php -------------------------------------------------------------------------------- /345-AllSigns-f4d20/src/surva/allsigns/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/345-AllSigns-f4d20/src/surva/allsigns/EventListener.php -------------------------------------------------------------------------------- /345-AllSigns-f4d20/src/surva/allsigns/tasks/SignUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/345-AllSigns-f4d20/src/surva/allsigns/tasks/SignUpdate.php -------------------------------------------------------------------------------- /345-AlwaysSpawn-a1cd2/desktop.ini: -------------------------------------------------------------------------------- 1 | [.ShellClassInfo] 2 | LocalizedResourceName=AlwaysSpawn 3 | -------------------------------------------------------------------------------- /345-AlwaysSpawn-a1cd2/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/345-AlwaysSpawn-a1cd2/plugin.yml -------------------------------------------------------------------------------- /345-AlwaysSpawn-a1cd2/src/philipshilling/alwaysspawn/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/345-AlwaysSpawn-a1cd2/src/philipshilling/alwaysspawn/Loader.php -------------------------------------------------------------------------------- /AllSigns/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/README.md -------------------------------------------------------------------------------- /AllSigns/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/icon.png -------------------------------------------------------------------------------- /AllSigns/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/plugin.yml -------------------------------------------------------------------------------- /AllSigns/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/resources/config.yml -------------------------------------------------------------------------------- /AllSigns/resources/languages/de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/resources/languages/de.yml -------------------------------------------------------------------------------- /AllSigns/resources/languages/en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/resources/languages/en.yml -------------------------------------------------------------------------------- /AllSigns/src/surva/allsigns/AllSigns.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/src/surva/allsigns/AllSigns.php -------------------------------------------------------------------------------- /AllSigns/src/surva/allsigns/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/src/surva/allsigns/EventListener.php -------------------------------------------------------------------------------- /AllSigns/src/surva/allsigns/tasks/SignUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/AllSigns/src/surva/allsigns/tasks/SignUpdate.php -------------------------------------------------------------------------------- /BoostPad/README.md: -------------------------------------------------------------------------------- 1 | # BoostPad 2 | High configurable JumpPad plugin. 3 | -------------------------------------------------------------------------------- /BoostPad/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/BoostPad/plugin.yml -------------------------------------------------------------------------------- /BoostPad/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/BoostPad/resources/config.yml -------------------------------------------------------------------------------- /BoostPad/src/BoxOfDevs/BPad/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/BoostPad/src/BoxOfDevs/BPad/Main.php -------------------------------------------------------------------------------- /Buycraft/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/CONTRIBUTING.md -------------------------------------------------------------------------------- /Buycraft/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/LICENSE.md -------------------------------------------------------------------------------- /Buycraft/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/README.md -------------------------------------------------------------------------------- /Buycraft/build-plugin.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/build-plugin.sh -------------------------------------------------------------------------------- /Buycraft/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/icon.png -------------------------------------------------------------------------------- /Buycraft/phpunit.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/phpunit.xml -------------------------------------------------------------------------------- /Buycraft/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/plugin.yml -------------------------------------------------------------------------------- /Buycraft/resources/config.yml: -------------------------------------------------------------------------------- 1 | # BuycraftPM Configuration 2 | secret: '' -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/BuycraftListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/BuycraftListener.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/BuycraftPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/BuycraftPlugin.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Commands/BuycraftCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Commands/BuycraftCommand.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Commands/SecretVerificationTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Commands/SecretVerificationTask.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Execution/CommandExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Execution/CommandExecutor.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Execution/DeleteCommandsAsyncTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Execution/DeleteCommandsAsyncTask.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Execution/DeleteCommandsTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Execution/DeleteCommandsTask.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Execution/DuePlayerCheck.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Execution/DuePlayerCheck.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Execution/ImmediateExecutionRunner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Execution/ImmediateExecutionRunner.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Execution/PlayerCommandExecutor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Execution/PlayerCommandExecutor.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Execution/QueuedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Execution/QueuedCommand.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/PluginApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/PluginApi.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Util/AnalyticsSend.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Util/AnalyticsSend.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Util/FinalizeReportTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Util/FinalizeReportTask.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Util/ReportUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Util/ReportUtil.php -------------------------------------------------------------------------------- /Buycraft/src/Buycraft/PocketMine/Util/RunAsyncTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Buycraft/src/Buycraft/PocketMine/Util/RunAsyncTask.php -------------------------------------------------------------------------------- /CombatLogger/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/LICENSE -------------------------------------------------------------------------------- /CombatLogger/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/README.md -------------------------------------------------------------------------------- /CombatLogger/Settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/Settings.yml -------------------------------------------------------------------------------- /CombatLogger/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/plugin.yml -------------------------------------------------------------------------------- /CombatLogger/resources/Settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/resources/Settings.yml -------------------------------------------------------------------------------- /CombatLogger/src/jacknoordhuis/combatlogger/CombatLogger.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/src/jacknoordhuis/combatlogger/CombatLogger.php -------------------------------------------------------------------------------- /CombatLogger/src/jacknoordhuis/combatlogger/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/src/jacknoordhuis/combatlogger/EventListener.php -------------------------------------------------------------------------------- /CombatLogger/src/jacknoordhuis/combatlogger/MessageManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/src/jacknoordhuis/combatlogger/MessageManager.php -------------------------------------------------------------------------------- /CombatLogger/src/jacknoordhuis/combatlogger/TaggedHeartbeatTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CombatLogger/src/jacknoordhuis/combatlogger/TaggedHeartbeatTask.php -------------------------------------------------------------------------------- /CrateKeys/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/README.md -------------------------------------------------------------------------------- /CrateKeys/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/plugin.yml -------------------------------------------------------------------------------- /CrateKeys/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/resources/config.yml -------------------------------------------------------------------------------- /CrateKeys/resources/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/resources/messages.yml -------------------------------------------------------------------------------- /CrateKeys/src/Primus/CrateKeys/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/src/Primus/CrateKeys/EventListener.php -------------------------------------------------------------------------------- /CrateKeys/src/Primus/CrateKeys/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/src/Primus/CrateKeys/Main.php -------------------------------------------------------------------------------- /CrateKeys/src/Primus/CrateKeys/event/PlayerCrateKeyRecieveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/src/Primus/CrateKeys/event/PlayerCrateKeyRecieveEvent.php -------------------------------------------------------------------------------- /CrateKeys/src/Primus/CrateKeys/event/PlayerCrateKeyUseEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CrateKeys/src/Primus/CrateKeys/event/PlayerCrateKeyUseEvent.php -------------------------------------------------------------------------------- /CustomHelp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CustomHelp/LICENSE -------------------------------------------------------------------------------- /CustomHelp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CustomHelp/README.md -------------------------------------------------------------------------------- /CustomHelp/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CustomHelp/plugin.yml -------------------------------------------------------------------------------- /CustomHelp/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CustomHelp/resources/config.yml -------------------------------------------------------------------------------- /CustomHelp/src/CustomHelp/Commands/CommandHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CustomHelp/src/CustomHelp/Commands/CommandHelp.php -------------------------------------------------------------------------------- /CustomHelp/src/CustomHelp/CustomHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/CustomHelp/src/CustomHelp/CustomHelp.php -------------------------------------------------------------------------------- /EnderChest/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/LICENSE -------------------------------------------------------------------------------- /EnderChest/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/README.md -------------------------------------------------------------------------------- /EnderChest/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/plugin.yml -------------------------------------------------------------------------------- /EnderChest/src/enderchest/DataBase.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/src/enderchest/DataBase.php -------------------------------------------------------------------------------- /EnderChest/src/enderchest/EnderChest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/src/enderchest/EnderChest.php -------------------------------------------------------------------------------- /EnderChest/src/enderchest/EnderChestInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/src/enderchest/EnderChestInventory.php -------------------------------------------------------------------------------- /EnderChest/src/enderchest/EnderChestTile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/src/enderchest/EnderChestTile.php -------------------------------------------------------------------------------- /EnderChest/src/enderchest/Loader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/EnderChest/src/enderchest/Loader.php -------------------------------------------------------------------------------- /FormAPI/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAPI/plugin.yml -------------------------------------------------------------------------------- /FormAPI/src/jojoe77777/FormAPI/CustomForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAPI/src/jojoe77777/FormAPI/CustomForm.php -------------------------------------------------------------------------------- /FormAPI/src/jojoe77777/FormAPI/Form.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAPI/src/jojoe77777/FormAPI/Form.php -------------------------------------------------------------------------------- /FormAPI/src/jojoe77777/FormAPI/FormAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAPI/src/jojoe77777/FormAPI/FormAPI.php -------------------------------------------------------------------------------- /FormAPI/src/jojoe77777/FormAPI/ModalForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAPI/src/jojoe77777/FormAPI/ModalForm.php -------------------------------------------------------------------------------- /FormAPI/src/jojoe77777/FormAPI/SimpleForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAPI/src/jojoe77777/FormAPI/SimpleForm.php -------------------------------------------------------------------------------- /FormAuth/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/LICENSE -------------------------------------------------------------------------------- /FormAuth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/README.md -------------------------------------------------------------------------------- /FormAuth/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/plugin.yml -------------------------------------------------------------------------------- /FormAuth/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/resources/config.yml -------------------------------------------------------------------------------- /FormAuth/resources/messages-de.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/resources/messages-de.yml -------------------------------------------------------------------------------- /FormAuth/resources/messages-en.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/resources/messages-en.yml -------------------------------------------------------------------------------- /FormAuth/resources/messages-es.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/resources/messages-es.yml -------------------------------------------------------------------------------- /FormAuth/resources/messages-ru.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/resources/messages-ru.yml -------------------------------------------------------------------------------- /FormAuth/resources/messages-uk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/resources/messages-uk.yml -------------------------------------------------------------------------------- /FormAuth/resources/messages-zh.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/resources/messages-zh.yml -------------------------------------------------------------------------------- /FormAuth/src/dirouc/FormAuth/FormAuth.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/src/dirouc/FormAuth/FormAuth.php -------------------------------------------------------------------------------- /FormAuth/src/dirouc/FormAuth/Messages.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormAuth/src/dirouc/FormAuth/Messages.php -------------------------------------------------------------------------------- /FormShop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/README.md -------------------------------------------------------------------------------- /FormShop/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/plugin.yml -------------------------------------------------------------------------------- /FormShop/resources/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/resources/messages.yml -------------------------------------------------------------------------------- /FormShop/resources/shops.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/resources/shops.yml -------------------------------------------------------------------------------- /FormShop/src/ru/universalcrew/formshop/Home.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/src/ru/universalcrew/formshop/Home.php -------------------------------------------------------------------------------- /FormShop/src/ru/universalcrew/formshop/commands/ShopCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/src/ru/universalcrew/formshop/commands/ShopCommand.php -------------------------------------------------------------------------------- /FormShop/src/ru/universalcrew/formshop/utils/Forms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/src/ru/universalcrew/formshop/utils/Forms.php -------------------------------------------------------------------------------- /FormShop/src/ru/universalcrew/formshop/utils/Pay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/src/ru/universalcrew/formshop/utils/Pay.php -------------------------------------------------------------------------------- /FormShop/src/ru/universalcrew/formshop/utils/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/FormShop/src/ru/universalcrew/formshop/utils/Provider.php -------------------------------------------------------------------------------- /GrabBagCommands/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/LICENSE -------------------------------------------------------------------------------- /GrabBagCommands/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/README.md -------------------------------------------------------------------------------- /GrabBagCommands/media/GrabBag-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/media/GrabBag-icon.png -------------------------------------------------------------------------------- /GrabBagCommands/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/plugin.yml -------------------------------------------------------------------------------- /GrabBagCommands/resources/messages/messages.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/resources/messages/messages.ini -------------------------------------------------------------------------------- /GrabBagCommands/resources/messages/spa.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/resources/messages/spa.ini -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/BcTpMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/BcTpMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/BloodMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/BloodMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdAfterAt.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdAfterAt.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdAlias.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdAlias.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdAs.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdAs.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdBlowUp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdBlowUp.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdBurn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdBurn.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdChatMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdChatMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdClearInv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdClearInv.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdCrash.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdCrash.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdEntities.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdEntities.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdFTServers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdFTServers.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdFly.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdFly.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdFollowMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdFollowMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdFreezeMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdFreezeMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdGet.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdGet.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdGmx.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdGmx.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdHeal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdHeal.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdInvisible.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdInvisible.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdMuteMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdMuteMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdOpMsg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdOpMsg.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdOps.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdOps.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdPermMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdPermMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdPlayers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdPlayers.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdPluginMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdPluginMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdPrefixMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdPrefixMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdQuery.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdRcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdRcon.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdReOp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdReOp.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdRegMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdRegMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSelMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSelMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSetArmor.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSetArmor.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdShieldMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdShieldMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdShowInv.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdShowInv.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSkinner.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSkinner.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSlay.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSlay.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSpawn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSpawn.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSpectator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSpectator.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSrvModeMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSrvModeMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdSummon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdSummon.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdThrow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdThrow.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdTimings.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdTimings.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdTpStack.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdTpStack.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/CmdWhois.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/CmdWhois.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/JoinMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/JoinMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/Main.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/RepeatMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/RepeatMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/ServerList.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/ServerList.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/TransferMgr.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/TransferMgr.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/api/GbAddServerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/api/GbAddServerEvent.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/api/GbRemoveServerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/api/GbRemoveServerEvent.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/api/GrabBag.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/api/GrabBag.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/api/GrabBagEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/api/GrabBagEvent.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/ArmorItems.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/ArmorItems.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/BasicCli.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/BasicCli.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/BasicHelp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/BasicHelp.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/BasicPlugin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/BasicPlugin.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/Cmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/Cmd.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/CmdSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/CmdSelector.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/ExpandVars.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/ExpandVars.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/FileUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/FileUtils.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/InvUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/InvUtils.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/ItemName.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/ItemName.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/MPMU.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/MPMU.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/MoneyAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/MoneyAPI.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/PMScript.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/PMScript.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/PermUtils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/PermUtils.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/PluginAsyncTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/PluginAsyncTask.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/PluginCallbackTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/PluginCallbackTask.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/Rcon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/Rcon.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/RconTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/RconTask.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/Session.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/Session.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/SubCommandMap.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/SubCommandMap.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/mc.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/mc.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/selectors/All.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/selectors/All.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/selectors/AllEntity.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/selectors/AllEntity.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/selectors/BaseSelector.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/selectors/BaseSelector.php -------------------------------------------------------------------------------- /GrabBagCommands/src/aliuly/grabbag/common/selectors/Random.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/aliuly/grabbag/common/selectors/Random.php -------------------------------------------------------------------------------- /GrabBagCommands/src/xPaw/MinecraftQuery.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/xPaw/MinecraftQuery.php -------------------------------------------------------------------------------- /GrabBagCommands/src/xPaw/MinecraftQueryException.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/GrabBagCommands/src/xPaw/MinecraftQueryException.php -------------------------------------------------------------------------------- /HealthStatus/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/README.md -------------------------------------------------------------------------------- /HealthStatus/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/config.yml -------------------------------------------------------------------------------- /HealthStatus/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/plugin.yml -------------------------------------------------------------------------------- /HealthStatus/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/resources/config.yml -------------------------------------------------------------------------------- /HealthStatus/src/HealthStatus/GroupChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/src/HealthStatus/GroupChange.php -------------------------------------------------------------------------------- /HealthStatus/src/HealthStatus/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/src/HealthStatus/Main.php -------------------------------------------------------------------------------- /HealthStatus/src/HealthStatus/NickChange.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/src/HealthStatus/NickChange.php -------------------------------------------------------------------------------- /HealthStatus/src/HealthStatus/Task.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/HealthStatus/src/HealthStatus/Task.php -------------------------------------------------------------------------------- /JoinSystem/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/JoinSystem/README.md -------------------------------------------------------------------------------- /JoinSystem/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/JoinSystem/plugin.yml -------------------------------------------------------------------------------- /JoinSystem/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/JoinSystem/resources/config.yml -------------------------------------------------------------------------------- /JoinSystem/src/JoinSystem/Commands/CommandHub.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/JoinSystem/src/JoinSystem/Commands/CommandHub.php -------------------------------------------------------------------------------- /JoinSystem/src/JoinSystem/Events/PlayerJoin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/JoinSystem/src/JoinSystem/Events/PlayerJoin.php -------------------------------------------------------------------------------- /JoinSystem/src/JoinSystem/Events/PlayerQuit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/JoinSystem/src/JoinSystem/Events/PlayerQuit.php -------------------------------------------------------------------------------- /JoinSystem/src/JoinSystem/JoinSystem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/JoinSystem/src/JoinSystem/JoinSystem.php -------------------------------------------------------------------------------- /KillCash/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KillCash/LICENSE -------------------------------------------------------------------------------- /KillCash/README.md: -------------------------------------------------------------------------------- 1 | # KillCash 2 | Your have >> EconomyAPI & Pocketmoney 3 | 4 | # Good Lucky 5 | -------------------------------------------------------------------------------- /KillCash/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KillCash/config.yml -------------------------------------------------------------------------------- /KillCash/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KillCash/plugin.yml -------------------------------------------------------------------------------- /KillCash/src/Praxthisnovcht/KillCash/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KillCash/src/Praxthisnovcht/KillCash/Main.php -------------------------------------------------------------------------------- /KitUI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/LICENSE -------------------------------------------------------------------------------- /KitUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/README.md -------------------------------------------------------------------------------- /KitUI/Travis.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/Travis.php -------------------------------------------------------------------------------- /KitUI/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/icon.png -------------------------------------------------------------------------------- /KitUI/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/plugin.yml -------------------------------------------------------------------------------- /KitUI/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/resources/config.yml -------------------------------------------------------------------------------- /KitUI/resources/kits.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/resources/kits.yml -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/Kit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/Kit.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/Main.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/PlayerEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/PlayerEvents.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/UI/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/UI/Handler.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/UI/Window.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/UI/Window.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/UI/windows/KitError.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/UI/windows/KitError.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/UI/windows/KitInfo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/UI/windows/KitInfo.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/UI/windows/KitMainMenu.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/UI/windows/KitMainMenu.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/lang/LangManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/lang/LangManager.php -------------------------------------------------------------------------------- /KitUI/src/Infernus101/KitUI/tasks/CoolDownTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KitUI/src/Infernus101/KitUI/tasks/CoolDownTask.php -------------------------------------------------------------------------------- /KnockbackFFA/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/LICENSE.txt -------------------------------------------------------------------------------- /KnockbackFFA/ReadMe.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/ReadMe.md -------------------------------------------------------------------------------- /KnockbackFFA/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/plugin.yml -------------------------------------------------------------------------------- /KnockbackFFA/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/resources/config.yml -------------------------------------------------------------------------------- /KnockbackFFA/resources/deu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/resources/deu.ini -------------------------------------------------------------------------------- /KnockbackFFA/resources/eng.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/resources/eng.ini -------------------------------------------------------------------------------- /KnockbackFFA/resources/fra.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/resources/fra.ini -------------------------------------------------------------------------------- /KnockbackFFA/resources/how_to_use.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/resources/how_to_use.txt -------------------------------------------------------------------------------- /KnockbackFFA/resources/rus.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/resources/rus.ini -------------------------------------------------------------------------------- /KnockbackFFA/src/KnockbackFFA/KnockbackFFA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/src/KnockbackFFA/KnockbackFFA.php -------------------------------------------------------------------------------- /KnockbackFFA/src/KnockbackFFA/checkLevel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/KnockbackFFA/src/KnockbackFFA/checkLevel.php -------------------------------------------------------------------------------- /LuckyDrop/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/LuckyDrop/LICENSE -------------------------------------------------------------------------------- /LuckyDrop/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/LuckyDrop/plugin.yml -------------------------------------------------------------------------------- /LuckyDrop/src/ArmTheDev/ArmTheDev.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/LuckyDrop/src/ArmTheDev/ArmTheDev.php -------------------------------------------------------------------------------- /MaskShop-UI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MaskShop-UI/README.md -------------------------------------------------------------------------------- /MaskShop-UI/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MaskShop-UI/plugin.yml -------------------------------------------------------------------------------- /MaskShop-UI/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MaskShop-UI/resources/config.yml -------------------------------------------------------------------------------- /MaskShop-UI/src/MASKshop/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MaskShop-UI/src/MASKshop/Main.php -------------------------------------------------------------------------------- /MineReset/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/LICENSE -------------------------------------------------------------------------------- /MineReset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/README.md -------------------------------------------------------------------------------- /MineReset/entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/entry.php -------------------------------------------------------------------------------- /MineReset/meta/minereset.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/meta/minereset.png -------------------------------------------------------------------------------- /MineReset/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/plugin.yml -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/Mine.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/Mine.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/MineManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/MineManager.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/MineReset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/MineReset.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/ResetProgressManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/ResetProgressManager.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/AboutCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/AboutCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/CreateCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/CreateCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/DestroyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/DestroyCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/ListCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/ListCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/MineCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/MineCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/ResetAllCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/ResetAllCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/ResetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/ResetCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/SetCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/SetCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/command/SubCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/command/SubCommand.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/listener/CreationListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/listener/CreationListener.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/listener/MineCreationSession.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/listener/MineCreationSession.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/listener/RegionBlockerListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/listener/RegionBlockerListener.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/store/AbstractStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/store/AbstractStore.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/store/DataStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/store/DataStore.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/store/EntityStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/store/EntityStore.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/store/Reloadable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/store/Reloadable.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/store/Saveable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/store/Saveable.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/store/YAMLStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/store/YAMLStore.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/task/AboutPullTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/task/AboutPullTask.php -------------------------------------------------------------------------------- /MineReset/src/falkirks/minereset/task/ResetTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MineReset/src/falkirks/minereset/task/ResetTask.php -------------------------------------------------------------------------------- /Multi-Inv/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Multi-Inv/LICENSE -------------------------------------------------------------------------------- /Multi-Inv/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Multi-Inv/plugin.yml -------------------------------------------------------------------------------- /Multi-Inv/resources/config.yml: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /Multi-Inv/src/jasonwynn10/Minv/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Multi-Inv/src/jasonwynn10/Minv/Main.php -------------------------------------------------------------------------------- /MultiWorld/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/plugin.yml -------------------------------------------------------------------------------- /MultiWorld/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/resources/config.yml -------------------------------------------------------------------------------- /MultiWorld/resources/languages/Czech.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/resources/languages/Czech.yml -------------------------------------------------------------------------------- /MultiWorld/resources/languages/English.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/resources/languages/English.yml -------------------------------------------------------------------------------- /MultiWorld/resources/languages/German.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/resources/languages/German.yml -------------------------------------------------------------------------------- /MultiWorld/resources/languages/Russian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/resources/languages/Russian.yml -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/MultiWorld.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/MultiWorld.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/command/MultiWorldCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/command/MultiWorldCommand.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/generator/ender/EnderGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/generator/ender/EnderGenerator.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/generator/ender/populator/EnderPilar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/generator/ender/populator/EnderPilar.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/generator/void/VoidGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/generator/void/VoidGenerator.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/task/MultiWorldTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/task/MultiWorldTask.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/util/ConfigManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/util/ConfigManager.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/util/Data.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/util/Data.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/util/DataListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/util/DataListener.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/util/DataManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/util/DataManager.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/util/DataTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/util/DataTask.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/util/LanguageManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/util/LanguageManager.php -------------------------------------------------------------------------------- /MultiWorld/src/multiworld/worldedit/WorldEdit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/MultiWorld/src/multiworld/worldedit/WorldEdit.php -------------------------------------------------------------------------------- /PVPlevelRPG/lp/byzikenpe.yml: -------------------------------------------------------------------------------- 1 | --- 2 | xp: 4 3 | level: 101 4 | ... 5 | -------------------------------------------------------------------------------- /PVPlevelRPG/lp/console.yml: -------------------------------------------------------------------------------- 1 | --- [] 2 | ... 3 | -------------------------------------------------------------------------------- /PVPlevelRPG/lp/mrreskill.yml: -------------------------------------------------------------------------------- 1 | --- 2 | xp: 13 3 | level: 4 4 | ... 5 | -------------------------------------------------------------------------------- /PVPlevelRPG/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PVPlevelRPG/plugin.yml -------------------------------------------------------------------------------- /PVPlevelRPG/src/LevelMain/LevelCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PVPlevelRPG/src/LevelMain/LevelCommand.php -------------------------------------------------------------------------------- /PVPlevelRPG/src/LevelMain/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PVPlevelRPG/src/LevelMain/Main.php -------------------------------------------------------------------------------- /PeacefulSpawn/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PeacefulSpawn/plugin.yml -------------------------------------------------------------------------------- /PeacefulSpawn/src/LDX/PeacefulSpawn/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PeacefulSpawn/src/LDX/PeacefulSpawn/Main.php -------------------------------------------------------------------------------- /PerWorldChat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PerWorldChat/LICENSE -------------------------------------------------------------------------------- /PerWorldChat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PerWorldChat/README.md -------------------------------------------------------------------------------- /PerWorldChat/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PerWorldChat/config.yml -------------------------------------------------------------------------------- /PerWorldChat/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PerWorldChat/plugin.yml -------------------------------------------------------------------------------- /PerWorldChat/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PerWorldChat/resources/config.yml -------------------------------------------------------------------------------- /PerWorldChat/src/PerWorldChat/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PerWorldChat/src/PerWorldChat/Main.php -------------------------------------------------------------------------------- /PlayerVaults/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/LICENSE -------------------------------------------------------------------------------- /PlayerVaults/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/README.md -------------------------------------------------------------------------------- /PlayerVaults/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/plugin.yml -------------------------------------------------------------------------------- /PlayerVaults/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/resources/config.yml -------------------------------------------------------------------------------- /PlayerVaults/src/PlayerVaults/PlayerVaults.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/src/PlayerVaults/PlayerVaults.php -------------------------------------------------------------------------------- /PlayerVaults/src/PlayerVaults/Provider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/src/PlayerVaults/Provider.php -------------------------------------------------------------------------------- /PlayerVaults/src/PlayerVaults/Task/DeleteVaultTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/src/PlayerVaults/Task/DeleteVaultTask.php -------------------------------------------------------------------------------- /PlayerVaults/src/PlayerVaults/Task/FetchInventoryTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/src/PlayerVaults/Task/FetchInventoryTask.php -------------------------------------------------------------------------------- /PlayerVaults/src/PlayerVaults/Task/SaveInventoryTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/src/PlayerVaults/Task/SaveInventoryTask.php -------------------------------------------------------------------------------- /PlayerVaults/src/PlayerVaults/Vault/Vault.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/src/PlayerVaults/Vault/Vault.php -------------------------------------------------------------------------------- /PlayerVaults/src/PlayerVaults/Vault/VaultInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/PlayerVaults/src/PlayerVaults/Vault/VaultInventory.php -------------------------------------------------------------------------------- /ProfileUI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/LICENSE -------------------------------------------------------------------------------- /ProfileUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/README.md -------------------------------------------------------------------------------- /ProfileUI/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/icon.png -------------------------------------------------------------------------------- /ProfileUI/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/plugin.yml -------------------------------------------------------------------------------- /ProfileUI/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/resources/config.yml -------------------------------------------------------------------------------- /ProfileUI/src/Infernus101/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/src/Infernus101/Main.php -------------------------------------------------------------------------------- /ProfileUI/src/Infernus101/PlayerEvents.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/src/Infernus101/PlayerEvents.php -------------------------------------------------------------------------------- /ProfileUI/src/Infernus101/tasks/SaveTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/src/Infernus101/tasks/SaveTask.php -------------------------------------------------------------------------------- /ProfileUI/src/Infernus101/window/Handler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/src/Infernus101/window/Handler.php -------------------------------------------------------------------------------- /ProfileUI/src/Infernus101/window/ProfileWindow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/src/Infernus101/window/ProfileWindow.php -------------------------------------------------------------------------------- /ProfileUI/src/Infernus101/window/Window.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ProfileUI/src/Infernus101/window/Window.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/README.md -------------------------------------------------------------------------------- /RankUp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/LICENSE -------------------------------------------------------------------------------- /RankUp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/README.md -------------------------------------------------------------------------------- /RankUp/entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/entry.php -------------------------------------------------------------------------------- /RankUp/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/plugin.yml -------------------------------------------------------------------------------- /RankUp/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/resources/config.yml -------------------------------------------------------------------------------- /RankUp/resources/groups.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/resources/groups.yml -------------------------------------------------------------------------------- /RankUp/src/rankup/LanguageConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/LanguageConfig.php -------------------------------------------------------------------------------- /RankUp/src/rankup/RankUp.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/RankUp.php -------------------------------------------------------------------------------- /RankUp/src/rankup/command/RankUpCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/command/RankUpCommand.php -------------------------------------------------------------------------------- /RankUp/src/rankup/doesgroups/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/doesgroups/Group.php -------------------------------------------------------------------------------- /RankUp/src/rankup/doesgroups/RankUpDoesGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/doesgroups/RankUpDoesGroups.php -------------------------------------------------------------------------------- /RankUp/src/rankup/economy/BaseEconomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/economy/BaseEconomy.php -------------------------------------------------------------------------------- /RankUp/src/rankup/economy/Economy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/economy/Economy.php -------------------------------------------------------------------------------- /RankUp/src/rankup/economy/EconomyLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/economy/EconomyLoader.php -------------------------------------------------------------------------------- /RankUp/src/rankup/economy/EssentialsEconomy.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/economy/EssentialsEconomy.php -------------------------------------------------------------------------------- /RankUp/src/rankup/economy/PocketMoney.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/economy/PocketMoney.php -------------------------------------------------------------------------------- /RankUp/src/rankup/permission/BasePermissionManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/permission/BasePermissionManager.php -------------------------------------------------------------------------------- /RankUp/src/rankup/permission/PermissionLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/permission/PermissionLoader.php -------------------------------------------------------------------------------- /RankUp/src/rankup/permission/PurePerms.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/permission/PurePerms.php -------------------------------------------------------------------------------- /RankUp/src/rankup/permission/RankUpDoesGroups.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/permission/RankUpDoesGroups.php -------------------------------------------------------------------------------- /RankUp/src/rankup/rank/Rank.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/rank/Rank.php -------------------------------------------------------------------------------- /RankUp/src/rankup/rank/RankStore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RankUp/src/rankup/rank/RankStore.php -------------------------------------------------------------------------------- /ReportGUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/README.md -------------------------------------------------------------------------------- /ReportGUI/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/plugin.yml -------------------------------------------------------------------------------- /ReportGUI/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/resources/config.yml -------------------------------------------------------------------------------- /ReportGUI/resources/language.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/resources/language.yml -------------------------------------------------------------------------------- /ReportGUI/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/screenshots/1.png -------------------------------------------------------------------------------- /ReportGUI/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/screenshots/2.png -------------------------------------------------------------------------------- /ReportGUI/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/screenshots/3.png -------------------------------------------------------------------------------- /ReportGUI/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/screenshots/4.png -------------------------------------------------------------------------------- /ReportGUI/src/Taylcd/ReportGUI/ReportGUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/src/Taylcd/ReportGUI/ReportGUI.php -------------------------------------------------------------------------------- /ReportGUI/src/Taylcd/ReportGUI/SaveTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportGUI/src/Taylcd/ReportGUI/SaveTask.php -------------------------------------------------------------------------------- /ReportUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/README.md -------------------------------------------------------------------------------- /ReportUI/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/plugin.yml -------------------------------------------------------------------------------- /ReportUI/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/resources/config.yml -------------------------------------------------------------------------------- /ReportUI/resources/language.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/resources/language.yml -------------------------------------------------------------------------------- /ReportUI/screenshots/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/screenshots/1.png -------------------------------------------------------------------------------- /ReportUI/screenshots/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/screenshots/2.png -------------------------------------------------------------------------------- /ReportUI/screenshots/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/screenshots/3.png -------------------------------------------------------------------------------- /ReportUI/screenshots/4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/screenshots/4.png -------------------------------------------------------------------------------- /ReportUI/src/Taylcd/ReportUI/ReportUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/src/Taylcd/ReportUI/ReportUI.php -------------------------------------------------------------------------------- /ReportUI/src/Taylcd/ReportUI/event/Listener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/src/Taylcd/ReportUI/event/Listener.php -------------------------------------------------------------------------------- /ReportUI/src/Taylcd/ReportUI/event/PlayerReportEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/src/Taylcd/ReportUI/event/PlayerReportEvent.php -------------------------------------------------------------------------------- /ReportUI/src/Taylcd/ReportUI/event/ReportProcessedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/src/Taylcd/ReportUI/event/ReportProcessedEvent.php -------------------------------------------------------------------------------- /ReportUI/src/Taylcd/ReportUI/task/SaveTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/ReportUI/src/Taylcd/ReportUI/task/SaveTask.php -------------------------------------------------------------------------------- /RestartMe/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/LICENSE.txt -------------------------------------------------------------------------------- /RestartMe/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/plugin.yml -------------------------------------------------------------------------------- /RestartMe/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/resources/config.yml -------------------------------------------------------------------------------- /RestartMe/resources/values.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/resources/values.txt -------------------------------------------------------------------------------- /RestartMe/src/restartme/RestartMe.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/src/restartme/RestartMe.php -------------------------------------------------------------------------------- /RestartMe/src/restartme/command/RestartMeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/src/restartme/command/RestartMeCommand.php -------------------------------------------------------------------------------- /RestartMe/src/restartme/task/AutoBroadcastTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/src/restartme/task/AutoBroadcastTask.php -------------------------------------------------------------------------------- /RestartMe/src/restartme/task/CheckMemoryTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/src/restartme/task/CheckMemoryTask.php -------------------------------------------------------------------------------- /RestartMe/src/restartme/task/RestartServerTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/src/restartme/task/RestartServerTask.php -------------------------------------------------------------------------------- /RestartMe/src/restartme/utils/MemoryChecker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/RestartMe/src/restartme/utils/MemoryChecker.php -------------------------------------------------------------------------------- /SkyBlock/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/README.md -------------------------------------------------------------------------------- /SkyBlock/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/plugin.yml -------------------------------------------------------------------------------- /SkyBlock/resources/config.yml: -------------------------------------------------------------------------------- 1 | 2 | --- 3 | enable-teamchat: true 4 | ... -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/PluginHearbeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/PluginHearbeat.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/SkyBlock.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/SkyBlock.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/SkyBlockListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/SkyBlockListener.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/Utils.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/chat/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/chat/Chat.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/chat/ChatHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/chat/ChatHandler.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/command/SkyBlockCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/command/SkyBlockCommand.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/generator/SkyBlockGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/generator/SkyBlockGenerator.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/generator/SkyBlockGeneratorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/generator/SkyBlockGeneratorManager.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/generator/generators/BasicIsland.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/generator/generators/BasicIsland.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/invitation/Invitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/invitation/Invitation.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/invitation/InvitationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/invitation/InvitationHandler.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/island/Island.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/island/Island.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/island/IslandManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/island/IslandManager.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/reset/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/reset/Reset.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/reset/ResetHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/reset/ResetHandler.php -------------------------------------------------------------------------------- /SkyBlock/src/SkyBlock/skyblock/SkyBlockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlock/src/SkyBlock/skyblock/SkyBlockManager.php -------------------------------------------------------------------------------- /SkyBlockPE/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/README.md -------------------------------------------------------------------------------- /SkyBlockPE/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/plugin.yml -------------------------------------------------------------------------------- /SkyBlockPE/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/resources/config.yml -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/EventListener.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/Main.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/PluginHearbeat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/PluginHearbeat.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/Utils.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/chat/Chat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/chat/Chat.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/chat/ChatHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/chat/ChatHandler.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/command/SkyBlockCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/command/SkyBlockCommand.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/generator/SkyBlockGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/generator/SkyBlockGenerator.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/generator/SkyBlockGeneratorManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/generator/SkyBlockGeneratorManager.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/generator/generators/BasicIsland.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/generator/generators/BasicIsland.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/invitation/Invitation.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/invitation/Invitation.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/invitation/InvitationHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/invitation/InvitationHandler.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/island/Island.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/island/Island.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/island/IslandManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/island/IslandManager.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/reset/Reset.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/reset/Reset.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/reset/ResetHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/reset/ResetHandler.php -------------------------------------------------------------------------------- /SkyBlockPE/src/SkyBlock/skyblock/SkyBlockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SkyBlockPE/src/SkyBlock/skyblock/SkyBlockManager.php -------------------------------------------------------------------------------- /SoupFFA/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/LICENSE.txt -------------------------------------------------------------------------------- /SoupFFA/ReadME.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/ReadME.md -------------------------------------------------------------------------------- /SoupFFA/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/plugin.yml -------------------------------------------------------------------------------- /SoupFFA/resources/ara.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/ara.ini -------------------------------------------------------------------------------- /SoupFFA/resources/chi.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/chi.ini -------------------------------------------------------------------------------- /SoupFFA/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/config.yml -------------------------------------------------------------------------------- /SoupFFA/resources/deu.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/deu.ini -------------------------------------------------------------------------------- /SoupFFA/resources/eng.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/eng.ini -------------------------------------------------------------------------------- /SoupFFA/resources/fra.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/fra.ini -------------------------------------------------------------------------------- /SoupFFA/resources/spa: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/spa -------------------------------------------------------------------------------- /SoupFFA/resources/translate_template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/translate_template.ini -------------------------------------------------------------------------------- /SoupFFA/resources/tur.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/resources/tur.ini -------------------------------------------------------------------------------- /SoupFFA/src/SoupFFA/SoupFFA.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SoupFFA/src/SoupFFA/SoupFFA.php -------------------------------------------------------------------------------- /StatsPE-master/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/LICENSE -------------------------------------------------------------------------------- /StatsPE-master/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/README.md -------------------------------------------------------------------------------- /StatsPE-master/build.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/build.php -------------------------------------------------------------------------------- /StatsPE-master/compiledevtools.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/compiledevtools.php -------------------------------------------------------------------------------- /StatsPE-master/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/plugin.yml -------------------------------------------------------------------------------- /StatsPE-master/resources/English.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/resources/English.yml -------------------------------------------------------------------------------- /StatsPE-master/resources/German.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/resources/German.yml -------------------------------------------------------------------------------- /StatsPE-master/resources/Russian.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/resources/Russian.yml -------------------------------------------------------------------------------- /StatsPE-master/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/resources/config.yml -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Base.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Base.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Commands/StatsCmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Commands/StatsCmd.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Commands/StatsPECmd.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Commands/StatsPECmd.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/EventListener.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Events/DataEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Events/DataEvent.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Events/DataReceiveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Events/DataReceiveEvent.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Events/DataSaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Events/DataSaveEvent.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Events/EntryEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Events/EntryEvent.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Events/StatsPE_Event.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Events/StatsPE_Event.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/EventListener.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/Events/FloatingTextEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/Events/FloatingTextEvent.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/FloatingText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/FloatingText.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/FloatingTextManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/FloatingTexts/FloatingTextManager.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Providers/DataProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Providers/DataProvider.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Providers/Entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Providers/Entry.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Providers/JSONProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Providers/JSONProvider.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Providers/MySQLProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Providers/MySQLProvider.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Tasks/SaveTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Tasks/SaveTask.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Tasks/SaveToDbTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Tasks/SaveToDbTask.php -------------------------------------------------------------------------------- /StatsPE-master/src/SalmonDE/StatsPE/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/StatsPE-master/src/SalmonDE/StatsPE/Utils.php -------------------------------------------------------------------------------- /SuperVanish/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SuperVanish/LICENSE -------------------------------------------------------------------------------- /SuperVanish/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SuperVanish/README.md -------------------------------------------------------------------------------- /SuperVanish/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SuperVanish/plugin.yml -------------------------------------------------------------------------------- /SuperVanish/src/erkam2002/Vanish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/SuperVanish/src/erkam2002/Vanish.php -------------------------------------------------------------------------------- /TapToDo/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/LICENSE -------------------------------------------------------------------------------- /TapToDo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/README.md -------------------------------------------------------------------------------- /TapToDo/entry.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/entry.php -------------------------------------------------------------------------------- /TapToDo/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/plugin.yml -------------------------------------------------------------------------------- /TapToDo/resources/blocks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/resources/blocks.yml -------------------------------------------------------------------------------- /TapToDo/src/taptodo/Block.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/src/taptodo/Block.php -------------------------------------------------------------------------------- /TapToDo/src/taptodo/Command.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/src/taptodo/Command.php -------------------------------------------------------------------------------- /TapToDo/src/taptodo/ConfigUpdater.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/src/taptodo/ConfigUpdater.php -------------------------------------------------------------------------------- /TapToDo/src/taptodo/TapToDo.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TapToDo/src/taptodo/TapToDo.php -------------------------------------------------------------------------------- /TeaSpoon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/README.md -------------------------------------------------------------------------------- /TeaSpoon/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/plugin.yml -------------------------------------------------------------------------------- /TeaSpoon/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/resources/config.yml -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/EventListener.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/LevelManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/LevelManager.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/Main.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/Player.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/Player.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/Server.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/Server.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/Utils.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/block/BlockManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/block/BlockManager.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/block/EndPortal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/block/EndPortal.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/block/EnderChest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/block/EnderChest.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/block/Obsidian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/block/Obsidian.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/block/Portal.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/block/Portal.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/commands/CommandManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/commands/CommandManager.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/commands/KillCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/commands/KillCommand.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/commands/WorldCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/commands/WorldCommand.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Bat.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Bat.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Blaze.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Blaze.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/CaveSpider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/CaveSpider.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Chicken.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Chicken.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Cow.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Cow.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Creeper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Creeper.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Donkey.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Donkey.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/ElderGuardian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/ElderGuardian.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/EnderDragon.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/EnderDragon.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Enderman.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Enderman.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Endermite.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Endermite.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/EntityManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/EntityManager.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Evoker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Evoker.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Ghast.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Ghast.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Guardian.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Guardian.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Horse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Horse.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Human.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Human.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Husk.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Husk.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/IronGolem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/IronGolem.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Lightning.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Lightning.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Llama.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Llama.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/MagmaCube.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/MagmaCube.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Mooshroom.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Mooshroom.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Mule.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Mule.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Ocelot.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Ocelot.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Pig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Pig.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/PigZombie.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/PigZombie.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/PolarBear.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/PolarBear.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Rabbit.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Rabbit.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Sheep.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Sheep.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Shulker.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Shulker.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Silverfish.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Silverfish.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Skeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Skeleton.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/SkeletonHorse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/SkeletonHorse.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Slime.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Slime.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/SnowGolem.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/SnowGolem.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Spider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Spider.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Stray.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Stray.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Vex.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Vex.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Vindicator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Vindicator.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Witch.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Witch.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Wither.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Wither.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/WitherSkeleton.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/WitherSkeleton.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/Wolf.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/Wolf.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/XPOrb.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/XPOrb.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/ZombieHorse.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/ZombieHorse.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/ZombieVillager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/ZombieVillager.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/projectile/Egg.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/projectile/Egg.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/projectile/EnchantingBottle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/projectile/EnchantingBottle.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/projectile/EnderPearl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/projectile/EnderPearl.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/projectile/Snowball.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/projectile/Snowball.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/entity/projectile/SplashPotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/entity/projectile/SplashPotion.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/inventory/EnderChestInventory.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/inventory/EnderChestInventory.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/EnchantingBottle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/EnchantingBottle.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/EnderPearl.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/EnderPearl.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/FireCharge.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/FireCharge.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/FlintSteel.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/FlintSteel.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/ItemManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/ItemManager.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/Potion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/Potion.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/SplashPotion.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/SplashPotion.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/item/enchantment/Enchantment.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/item/enchantment/Enchantment.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/generator/VoidGenerator.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/generator/VoidGenerator.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/generator/biome/Biome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/generator/biome/Biome.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/generator/ender/Ender.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/generator/ender/Ender.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/generator/ender/biome/EnderBiome.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/generator/ender/biome/EnderBiome.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/generator/ender/populator/EnderPilar.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/generator/ender/populator/EnderPilar.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/generator/hell/Nether.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/generator/hell/Nether.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/particle/SpellParticle.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/particle/SpellParticle.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/populator/GroundFire.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/populator/GroundFire.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/populator/NetherGlowStone.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/populator/NetherGlowStone.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/populator/NetherLava.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/populator/NetherLava.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/populator/NetherOre.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/populator/NetherOre.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/level/sound/ExpPickupSound.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/level/sound/ExpPickupSound.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/plugin/AllAPI/FolderPluginLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/plugin/AllAPI/FolderPluginLoader.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/plugin/AllAPI/PharPluginLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/plugin/AllAPI/PharPluginLoader.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/plugin/AllAPI/ScriptPluginLoader.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/plugin/AllAPI/ScriptPluginLoader.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/plugin/AllAPILoaderManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/plugin/AllAPILoaderManager.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/task/CheckPlayersTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/task/CheckPlayersTask.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/tile/EnderChest.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/tile/EnderChest.php -------------------------------------------------------------------------------- /TeaSpoon/src/CortexPE/tile/Tile.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TeaSpoon/src/CortexPE/tile/Tile.php -------------------------------------------------------------------------------- /Texter/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /Texter/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/LICENSE -------------------------------------------------------------------------------- /Texter/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/README.md -------------------------------------------------------------------------------- /Texter/assets/Example.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/assets/Example.jpg -------------------------------------------------------------------------------- /Texter/assets/Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/assets/Logo.png -------------------------------------------------------------------------------- /Texter/assets/Texter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/assets/Texter.png -------------------------------------------------------------------------------- /Texter/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/plugin.yml -------------------------------------------------------------------------------- /Texter/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/resources/config.yml -------------------------------------------------------------------------------- /Texter/resources/crfts.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/resources/crfts.json -------------------------------------------------------------------------------- /Texter/resources/fts.json: -------------------------------------------------------------------------------- 1 | { 2 | } 3 | -------------------------------------------------------------------------------- /Texter/src/Texter/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/EventListener.php -------------------------------------------------------------------------------- /Texter/src/Texter/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/Main.php -------------------------------------------------------------------------------- /Texter/src/Texter/TexterApi.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/TexterApi.php -------------------------------------------------------------------------------- /Texter/src/Texter/commands/TxtAdmCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/commands/TxtAdmCommand.php -------------------------------------------------------------------------------- /Texter/src/Texter/commands/TxtCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/commands/TxtCommand.php -------------------------------------------------------------------------------- /Texter/src/Texter/language/Lang.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/language/Lang.php -------------------------------------------------------------------------------- /Texter/src/Texter/language/eng.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/language/eng.json -------------------------------------------------------------------------------- /Texter/src/Texter/language/jpn.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/language/jpn.json -------------------------------------------------------------------------------- /Texter/src/Texter/task/CheckUpdateTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/task/CheckUpdateTask.php -------------------------------------------------------------------------------- /Texter/src/Texter/task/WorldGetTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/task/WorldGetTask.php -------------------------------------------------------------------------------- /Texter/src/Texter/text/CantRemoveFloatingText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/text/CantRemoveFloatingText.php -------------------------------------------------------------------------------- /Texter/src/Texter/text/FloatingText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/text/FloatingText.php -------------------------------------------------------------------------------- /Texter/src/Texter/text/Text.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/text/Text.php -------------------------------------------------------------------------------- /Texter/src/Texter/utils/TunedConfig.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/Texter/src/Texter/utils/TunedConfig.php -------------------------------------------------------------------------------- /TimeCommander/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TimeCommander/config.yml -------------------------------------------------------------------------------- /TimeCommander/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TimeCommander/plugin.yml -------------------------------------------------------------------------------- /TimeCommander/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TimeCommander/resources/config.yml -------------------------------------------------------------------------------- /TimeCommander/src/LDX/TimeCommander/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TimeCommander/src/LDX/TimeCommander/Main.php -------------------------------------------------------------------------------- /TimeCommander/src/LDX/TimeCommander/TimeCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/TimeCommander/src/LDX/TimeCommander/TimeCommand.php -------------------------------------------------------------------------------- /WorldTpUI/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/LICENSE -------------------------------------------------------------------------------- /WorldTpUI/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/README.md -------------------------------------------------------------------------------- /WorldTpUI/config.yml: -------------------------------------------------------------------------------- 1 | --- [] 2 | ... 3 | -------------------------------------------------------------------------------- /WorldTpUI/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/plugin.yml -------------------------------------------------------------------------------- /WorldTpUI/src/Zero/WorldTpUI/Command/wtpuiCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/src/Zero/WorldTpUI/Command/wtpuiCommand.php -------------------------------------------------------------------------------- /WorldTpUI/src/Zero/WorldTpUI/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/src/Zero/WorldTpUI/Main.php -------------------------------------------------------------------------------- /WorldTpUI/src/Zero/WorldTpUI/UI/CustomUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/src/Zero/WorldTpUI/UI/CustomUI.php -------------------------------------------------------------------------------- /WorldTpUI/src/Zero/WorldTpUI/UI/ListenerUI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/src/Zero/WorldTpUI/UI/ListenerUI.php -------------------------------------------------------------------------------- /WorldTpUI/src/Zero/WorldTpUI/UI/UI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alexbgameson/3.0.0Alpha10-PocketMine-Plugins/HEAD/WorldTpUI/src/Zero/WorldTpUI/UI/UI.php --------------------------------------------------------------------------------