Skip to content

TrPlugins/TrChat

 
 

Repository files navigation

trchat2

Version Issues Last Commit Downloads

🔔 What's new in TrChat v2?

  • Optimized performance
  • New Channel & Format System
  • Better compatibility with other plugins

⛏ API usage:

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