Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.19 KB

README.md

File metadata and controls

27 lines (22 loc) · 1.19 KB

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("..."); // 改变聊天内容
    }   
}