Exemplo n.º 1
0
 private static void Main(string[] args)
 {
     IRCConfig conf = new IRCConfig();
     conf.name = "TRAXBUSTER";
     conf.nick = "TRAXBUSTER";
     conf.port = 6667;
     conf.server = "irc2.speedrunslive.com";
     conf.pass = "******";
     using (var bot = new IRCBot(conf))
     {
         bot.Connect();
         bot.IRCWork();
     }
     Console.WriteLine("Furkiebot quit/crashed");
     Console.ReadLine();
 } /* Main() */
Exemplo n.º 2
0
 public IRCBot(IRCConfig config)
 {
     this.config = config;
 } /* IRCBot */