Skip to content
forked from Arasple/TrChat

Modern & Advanced chat control for Minecraft servers

License

Notifications You must be signed in to change notification settings

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("..."); // ๆ”นๅ˜่Šๅคฉๅ†…ๅฎน
    }   
}