Package org.pircbotx

Examples of org.pircbotx.UserSnapshot


    plugin.server.broadcastMessage(ChatColor.YELLOW + playerName + " has left the chat");
  }
 
  @Override
  public void onQuit(QuitEvent<SimpleIRCBot> event){
    UserSnapshot user = event.getUser();
    String sender = user.getNick();
   
    if (sender.equals(event.getBot().getNick())){
      return;
    }
   
View Full Code Here

TOP

Related Classes of org.pircbotx.UserSnapshot

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.