Package us.aaronweiss.juicebot

Examples of us.aaronweiss.juicebot.Bot


  public static void main(String[] args) {
    JuiceBotDefaults.VERBOSE_BY_DEFAULT = false;
    String server = "irc.fyrechat.net:6667";
    if (args.length > 0)
      server = args[0];
    Bot bot = new MetalGear();
    bot.connect(server);
  }
View Full Code Here


   */
  public static void main(String[] args) {
    String server = "irc.fyrechat.net:6667";
    if (args.length > 0)
      server = args[0];
    Bot bot = new JuiceBot();
    Channel session = bot.connect(server);
    Scanner input = new Scanner(System.in);
    while (true) {
      String cmd = input.nextLine();
      if (cmd.equalsIgnoreCase("quit") || cmd.equalsIgnoreCase("exit") || cmd.equalsIgnoreCase("shutdown")) {
        bot.disconnect(session);
        break;
      }
    }
    input.close();
  }
View Full Code Here

   */
  public static void main(String[] args) {
    String server = "irc.fyrechat.net:6667";
    if (args.length > 0)
      server = args[0];
    Bot bot = new ReversedBot("calc0000");
    Channel session = bot.connect(server);
    Scanner input = new Scanner(System.in);
    while (true) {
      String cmd = input.nextLine();
      if (cmd.equalsIgnoreCase("quit") || cmd.equalsIgnoreCase("exit") || cmd.equalsIgnoreCase("shutdown")) {
        bot.disconnect(session);
        break;
      }
    }
    input.close();
  }
View Full Code Here

   */
  public static void main(String[] args) {
    String server = "irc.fyrechat.net:6667";
    if (args.length > 0)
      server = args[0];
    Bot bot = new Stati();
    Channel session = bot.connect(server);
    Scanner input = new Scanner(System.in);
    while (true) {
      String cmd = input.nextLine();
      if (cmd.equalsIgnoreCase("quit") || cmd.equalsIgnoreCase("exit") || cmd.equalsIgnoreCase("shutdown")) {
        bot.disconnect(session);
        break;
      }
    }
    input.close();
  }
View Full Code Here

   */
  public static void main(String[] args) {
    String server = "irc.fyrechat.net:6667";
    if (args.length > 0)
      server = args[0];
    Bot bot = new Sweet("aaronweiss74");
    Channel session = bot.connect(server);
    Scanner input = new Scanner(System.in);
    while (true) {
      String cmd = input.nextLine();
      if (cmd.equalsIgnoreCase("quit") || cmd.equalsIgnoreCase("exit") || cmd.equalsIgnoreCase("shutdown")) {
        bot.disconnect(session);
        break;
      }
    }
    input.close();
  }
View Full Code Here

TOP

Related Classes of us.aaronweiss.juicebot.Bot

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.