├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── suggestion.md ├── .gitignore ├── .poggit.yml ├── LICENSE ├── README.md ├── composer.json ├── composer.lock ├── icon.png ├── phpstan.neon.dist ├── plugin.yml ├── resources ├── config.yml ├── help_eng.txt ├── help_fra.txt ├── help_spa.txt ├── messages.yml └── provider │ ├── mysql.sql │ └── sqlite.sql └── src ├── Arena.php ├── CommandHandler.php ├── EventHandler.php ├── Events ├── ArenaAddPlayerEvent.php ├── ArenaCreateEvent.php ├── ArenaDeleteEvent.php ├── ArenaEndEvent.php ├── ArenaPreStartEvent.php ├── ArenaRemovePlayerEvent.php ├── ArenaStartEvent.php └── KothEvent.php ├── Main.php ├── Particles └── FloatingText.php ├── Providers ├── BaseProvider.php └── SqlProvider.php ├── Tasks ├── CheckUpdate.php ├── GameTimer.php └── StartCountdown.php └── Utils.php /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/suggestion.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/.github/ISSUE_TEMPLATE/suggestion.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea/* 2 | /vendor/ 3 | /dist/ 4 | -------------------------------------------------------------------------------- /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/composer.json -------------------------------------------------------------------------------- /composer.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/composer.lock -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/icon.png -------------------------------------------------------------------------------- /phpstan.neon.dist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/phpstan.neon.dist -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/help_eng.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/resources/help_eng.txt -------------------------------------------------------------------------------- /resources/help_fra.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/resources/help_fra.txt -------------------------------------------------------------------------------- /resources/help_spa.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/resources/help_spa.txt -------------------------------------------------------------------------------- /resources/messages.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/resources/messages.yml -------------------------------------------------------------------------------- /resources/provider/mysql.sql: -------------------------------------------------------------------------------- 1 | -- TODO 2 | -------------------------------------------------------------------------------- /resources/provider/sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/resources/provider/sqlite.sql -------------------------------------------------------------------------------- /src/Arena.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Arena.php -------------------------------------------------------------------------------- /src/CommandHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/CommandHandler.php -------------------------------------------------------------------------------- /src/EventHandler.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/EventHandler.php -------------------------------------------------------------------------------- /src/Events/ArenaAddPlayerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/ArenaAddPlayerEvent.php -------------------------------------------------------------------------------- /src/Events/ArenaCreateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/ArenaCreateEvent.php -------------------------------------------------------------------------------- /src/Events/ArenaDeleteEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/ArenaDeleteEvent.php -------------------------------------------------------------------------------- /src/Events/ArenaEndEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/ArenaEndEvent.php -------------------------------------------------------------------------------- /src/Events/ArenaPreStartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/ArenaPreStartEvent.php -------------------------------------------------------------------------------- /src/Events/ArenaRemovePlayerEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/ArenaRemovePlayerEvent.php -------------------------------------------------------------------------------- /src/Events/ArenaStartEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/ArenaStartEvent.php -------------------------------------------------------------------------------- /src/Events/KothEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Events/KothEvent.php -------------------------------------------------------------------------------- /src/Main.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Main.php -------------------------------------------------------------------------------- /src/Particles/FloatingText.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Particles/FloatingText.php -------------------------------------------------------------------------------- /src/Providers/BaseProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Providers/BaseProvider.php -------------------------------------------------------------------------------- /src/Providers/SqlProvider.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Providers/SqlProvider.php -------------------------------------------------------------------------------- /src/Tasks/CheckUpdate.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Tasks/CheckUpdate.php -------------------------------------------------------------------------------- /src/Tasks/GameTimer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Tasks/GameTimer.php -------------------------------------------------------------------------------- /src/Tasks/StartCountdown.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Tasks/StartCountdown.php -------------------------------------------------------------------------------- /src/Utils.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JaxkDev/koth/HEAD/src/Utils.php --------------------------------------------------------------------------------