Example #1
0
        static void Main(string[] args)
        {
            // Set up bot
            irc.AddChannel("#guild");
            //irc.AddChannel("#test");
            irc.AddChannel("#interns");
            irc.AddLineHandler(GameLogic);
            irc.AddLineHandler(ConversationLog);
            irc.AddLineHandler(ListenForKills);
            irc.AddLineHandler(ListenForTargets);

            // Connect and start game
            irc.Connect();
        }