├── .poggit.yml ├── CustomAlerts ├── icon.png ├── plugin.yml ├── resources │ └── config.yml └── src │ └── CustomAlerts │ ├── Commands │ └── Commands.php │ ├── CustomAlerts.php │ ├── EventListener.php │ ├── Events │ ├── CustomAlertsDeathEvent.php │ ├── CustomAlertsEvent.php │ ├── CustomAlertsFullServerKickEvent.php │ ├── CustomAlertsJoinEvent.php │ ├── CustomAlertsMotdUpdateEvent.php │ ├── CustomAlertsOutdatedClientKickEvent.php │ ├── CustomAlertsOutdatedServerKickEvent.php │ ├── CustomAlertsQuitEvent.php │ ├── CustomAlertsWhitelistKickEvent.php │ └── CustomAlertsWorldChangeEvent.php │ └── MotdTask.php ├── CustomAlertsExample ├── plugin.yml └── src │ └── CustomAlertsExample │ └── CustomAlertsExample.php ├── LICENSE └── README.md /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/.poggit.yml -------------------------------------------------------------------------------- /CustomAlerts/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/icon.png -------------------------------------------------------------------------------- /CustomAlerts/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/plugin.yml -------------------------------------------------------------------------------- /CustomAlerts/resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/resources/config.yml -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Commands/Commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Commands/Commands.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/CustomAlerts.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/CustomAlerts.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/EventListener.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsDeathEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsDeathEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsFullServerKickEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsFullServerKickEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsJoinEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsJoinEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsMotdUpdateEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsMotdUpdateEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsOutdatedClientKickEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsOutdatedClientKickEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsOutdatedServerKickEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsOutdatedServerKickEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsQuitEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsQuitEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsWhitelistKickEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsWhitelistKickEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/Events/CustomAlertsWorldChangeEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/Events/CustomAlertsWorldChangeEvent.php -------------------------------------------------------------------------------- /CustomAlerts/src/CustomAlerts/MotdTask.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlerts/src/CustomAlerts/MotdTask.php -------------------------------------------------------------------------------- /CustomAlertsExample/plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlertsExample/plugin.yml -------------------------------------------------------------------------------- /CustomAlertsExample/src/CustomAlertsExample/CustomAlertsExample.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/CustomAlertsExample/src/CustomAlertsExample/CustomAlertsExample.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/CustomAlerts/HEAD/README.md --------------------------------------------------------------------------------