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?
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");
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With