Home
Name Modified Size InfoDownloads / Week
src 2014-11-19
readme.txt 2014-11-19 545 Bytes
IRCBotLib.dll 2014-11-19 10.2 kB
Totals: 3 Items   10.8 kB 0
IRCBotLib by Cliffordex

This library provided under license:
https://creativecommons.org/licenses/by-sa/3.0/us/
Attribution and ShareAlike

Code steps:
1. Construct
2. Set Name, _pass (if applicable)
3. Add ToJoin channel(s)
4. Add EventHandlers 
5. RunBot(ServerAddress)

Example:

static void Main()
{
  IRCBot Bot = new IRCBot(){ Name = "Botty" }; // Construct and set name
  Bot.OnPMed += Bot_OnPMed; // Add EventHandler(s)
  Bot.ToJoin.Add("#Bots"); // Add channel(s) to join
  Bot.RunBot("127.0.0.1"); // Start Loop
}
Source: readme.txt, updated 2014-11-19