tags:

views:

321

answers:

2
public static string SERVER = "irc.rizon.net";
private static int PORT = 6667;
private static string USER = "Test C# Irc bot";
private static string NICK = "Testing";
private static string CHANNEL = "#Test0x40"; 

public static void Main(string[] args)
{
    NetworkStream stream;
    TcpClient irc;
    StreamReader reader;
    StreamWriter writer;

    irc = new TcpClient(SERVER, PORT);
    stream = irc.GetStream();
    reader = new StreamReader(stream);
    writer = new StreamWriter(stream);

    writer.WriteLine("NICK " + NICK);
    writer.Flush();
    writer.WriteLine("JOIN " + CHANNEL);
    writer.Flush(); 

    Console.ReadKey(true);
}

Why does my IRC bot not connect?

+2  A: 

The IRC protocol wants CR/LF pairs, whereas the default behavior for StreamWriter is just line feeds. You should create your StreamWriter like this:

writer = new StreamWriter(stream) { NewLine = "\r\n", AutoFlush = true };

Additionally, you should probably specify a username with the USER command before joining a channel, although I'm not sure if it's completely necessary:

writer.WriteLine("USER username +mode * :Real Name");
MikeP
The latter can be checked in the RFC or if you are connecting to a particular IRC daemon, its documentation can be referenced also.
JonathanK