TrPlugins / TrChat

Modern & Advanced chat control for Minecraft servers
https://trchat.trixey.cc/
MIT License
120 stars 42 forks source link
bungeecord-plugin kotlin-minecraft-plugin minecraft-chat-plugin minecraft-pluigin paper-plugin spigot-plugin velocity-plugin

trchat2

Version Issues Last Commit Downloads

🔔 What's new in TrChat v2?


⛏ API usage:

public class Demo implements Listener {

    @EventHandler
    private void e(TrChatEvent e) {
        e.getChannel(); // 获取聊天频道
        e.setCanceled(true); // 取消发送聊天
        e.setMessage("..."); // 改变聊天内容
    }   
}