├── .poggit.yml ├── LICENSE ├── README.md ├── plugin.yml ├── resources └── config.yml └── src └── ServerCore ├── ServerCore.php ├── command ├── ClearCommand.php ├── DisableCommand.php ├── EnableCommand.php ├── FeedCommand.php ├── FlyCommand.php ├── ForgiveCommand.php ├── HealCommand.php ├── HubCommand.php ├── InfoCommand.php ├── MuteCommand.php ├── PingCommand.php ├── PositionCommand.php ├── RulesCommand.php ├── ServerCoreCommand.php ├── SmiteCommand.php ├── UnmuteCommand.php ├── VanishCommand.php ├── VisionCommand.php └── WarnCommand.php ├── scoreboard └── Scoreboard.php └── task └── ScoreboardTask.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/resources/config.yml -------------------------------------------------------------------------------- /src/ServerCore/ServerCore.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/ServerCore.php -------------------------------------------------------------------------------- /src/ServerCore/command/ClearCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/ClearCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/DisableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/DisableCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/EnableCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/EnableCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/FeedCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/FeedCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/FlyCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/FlyCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/ForgiveCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/ForgiveCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/HealCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/HealCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/HubCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/HubCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/InfoCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/InfoCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/MuteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/MuteCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/PingCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/PingCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/PositionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/PositionCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/RulesCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/RulesCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/ServerCoreCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/ServerCoreCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/SmiteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/SmiteCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/UnmuteCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/UnmuteCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/VanishCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/VanishCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/VisionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/VisionCommand.php -------------------------------------------------------------------------------- /src/ServerCore/command/WarnCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/command/WarnCommand.php -------------------------------------------------------------------------------- /src/ServerCore/scoreboard/Scoreboard.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/scoreboard/Scoreboard.php -------------------------------------------------------------------------------- /src/ServerCore/task/ScoreboardTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IceCruelStuff/ServerCore/HEAD/src/ServerCore/task/ScoreboardTask.php --------------------------------------------------------------------------------