├── .poggit.yml ├── LICENSE ├── README.md ├── icon.png ├── plugin.yml ├── resources ├── channels.yml └── config.yml └── src └── ServerChannels ├── Commands └── Commands.php ├── EventListener.php ├── Events ├── ServerChannelsChatEvent.php ├── ServerChannelsEvent.php ├── ServerChannelsJoinEvent.php └── ServerChannelsLeaveEvent.php └── ServerChannels.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/.poggit.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/README.md -------------------------------------------------------------------------------- /icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/icon.png -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/channels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/resources/channels.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/resources/config.yml -------------------------------------------------------------------------------- /src/ServerChannels/Commands/Commands.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/src/ServerChannels/Commands/Commands.php -------------------------------------------------------------------------------- /src/ServerChannels/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/src/ServerChannels/EventListener.php -------------------------------------------------------------------------------- /src/ServerChannels/Events/ServerChannelsChatEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/src/ServerChannels/Events/ServerChannelsChatEvent.php -------------------------------------------------------------------------------- /src/ServerChannels/Events/ServerChannelsEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/src/ServerChannels/Events/ServerChannelsEvent.php -------------------------------------------------------------------------------- /src/ServerChannels/Events/ServerChannelsJoinEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/src/ServerChannels/Events/ServerChannelsJoinEvent.php -------------------------------------------------------------------------------- /src/ServerChannels/Events/ServerChannelsLeaveEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/src/ServerChannels/Events/ServerChannelsLeaveEvent.php -------------------------------------------------------------------------------- /src/ServerChannels/ServerChannels.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/EvolSoft/ServerChannels/HEAD/src/ServerChannels/ServerChannels.php --------------------------------------------------------------------------------