Package org.pircbotx

Examples of org.pircbotx.PircBotX.changeNick()


            return; // never talk with artificial forms of life
        }

        final PircBotX bot = event.getBot();
        if (!bot.getNick().equals(bot.getName())) {
            bot.changeNick(bot.getName());
        }
        String message = event.getMessage();

        // react to BZs in the messages
        Matcher bzMatcher = BZ_PATTERN.matcher(message);
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.