NEW

Summary

Directory Structure

Directory structure:
└── pmplugins-development/
    ├── README.md
    ├── LICENSE
    ├── NETWORK_IDs.md
    ├── NOTES.md
    ├── SUBMITTED.md
    ├── AnySlab/
    │   ├── plugin.yml
    │   └── src/
    │       └── anyslab/
    │           ├── CustomSlab.php
    │           └── main.php
    ├── ArrowTP/
    │   ├── plugin.yml
    │   ├── resources/
    │   │   └── config.yml
    │   └── src/
    │       └── jojoe77777/
    │           └── arrowtp/
    │               └── Main.php
    ├── CouponCode/
    │   ├── plugin.yml
    │   └── src/
    │       └── Legoboy/
    │           └── CouponCode/
    │               └── Main.php
    ├── Lookout/
    │   ├── config.yml
    │   ├── plugin.yml
    │   ├── resources/
    │   │   └── config.yml
    │   └── src/
    │       └── Legoboy/
    │           └── Lookout/
    │               ├── GameManager.php
    │               ├── GameWorld.php
    │               ├── Loader.php
    │               └── TimerTask.php
    ├── ModTools/
    │   ├── plugin.yml
    │   ├── resources/
    │   │   └── config.yml
    │   └── src/
    │       └── jojoe77777/
    │           └── modtools/
    │               └── ModTools.php
    ├── Placeholders_DEV/
    │   ├── README.md
    │   ├── plugin.yml
    │   ├── resources/
    │   │   ├── config.yml
    │   │   └── placeholders.php
    │   └── src/
    │       └── jojoe77777/
    │           └── placeholders/
    │               └── Main.php
    ├── SignTools/
    │   ├── plugin.yml
    │   └── src/
    │       └── Legoboy/
    │           └── SignTools/
    │               └── Main.php
    ├── Slapper_DEV/
    │   ├── plugin.yml
    │   └── src/
    │       └── slapper/
    │           └── entities/
    │               ├── HumanNPC.php
    │               ├── SlapperBat.php
    │               ├── SlapperBlaze.php
    │               ├── SlapperCaveSpider.php
    │               ├── SlapperChicken.php
    │               ├── SlapperCow.php
    │               ├── SlapperCreeper.php
    │               ├── SlapperEnderman.php
    │               ├── SlapperGhast.php
    │               ├── SlapperHuman.php
    │               ├── SlapperIronGolem.php
    │               ├── SlapperLavaSlime.php
    │               ├── SlapperMushroomCow.php
    │               ├── SlapperOcelot.php
    │               ├── SlapperPig.php
    │               ├── SlapperPigZombie.php
    │               ├── SlapperSheep.php
    │               ├── SlapperSilverfish.php
    │               ├── SlapperSkeleton.php
    │               ├── SlapperSlime.php
    │               ├── SlapperSnowman.php
    │               ├── SlapperSpider.php
    │               ├── SlapperSquid.php
    │               ├── SlapperVillager.php
    │               ├── SlapperWolf.php
    │               ├── SlapperZombie.php
    │               ├── SlapperZombieVillager.php
    │               └── other/
    │                   ├── SlapperBoat.php
    │                   ├── SlapperFallingSand.php
    │                   ├── SlapperMinecart.php
    │                   └── SlapperPrimedTNT.php
    ├── SuperAPI/
    │   ├── README.md
    │   ├── plugin.yml
    │   └── src/
    │       └── PMPlugins/
    │           └── SuperAPI/
    │               ├── SAPI.php
    │               └── events/
    │                   └── PlayerBoomEvent.php
    ├── TellRaw/
    │   ├── README.md
    │   ├── plugin.yml
    │   └── src/
    │       └── jojoe77777/
    │           └── tellraw/
    │               └── Main.php
    ├── TimeSender/
    │   ├── README.md
    │   ├── plugin.yml
    │   └── src/
    │       └── jojoe77777/
    │           └── ip/
    │               └── Main.php
    └── WorldStats/
        ├── README.md
        ├── plugin.yml
        └── src/
            └── Legoboy/
                └── WorldStats/
                    ├── WorldStats.php
                    ├── commands/
                    │   └── WorldStatsCommand.php
                    └── task/
                        └── SignUpdateTask.php

Files Content