Esempio n. 1
0
 public Bot(string server, int port, string nick)
 {
     _server = server;
     _port = port;
     _nick = nick;
     _msgHandler = new MessageHandler(this);
     _quoteHandler = new QuoteHandler("Quotes");
     _joinQueue = new List<string>();
     _joinedChannels = new List<string>();
     _chanOps = new Dictionary<string, List<string>>();
 }
Esempio n. 2
0
 public Bot(string server, int port, string nick)
 {
     _server         = server;
     _port           = port;
     _nick           = nick;
     _msgHandler     = new MessageHandler(this);
     _quoteHandler   = new QuoteHandler("Quotes");
     _joinQueue      = new List <string>();
     _joinedChannels = new List <string>();
     _chanOps        = new Dictionary <string, List <string> >();
 }