tags:

views:

47

answers:

2

Hi, does anyone know how you go about streaming text to a IRC server?

I have a game server, and i'd like to stream the chat to IRC. I can get the chat as a string within a C# program..

Anyone know how to do this? Or a good resource to look at?

Cheers

+1  A: 

Write an IRC bot.

Use an existing IRC library or use the RFC describing the IRC protocol to develop your own, to write an IRC bot that will be able to send text to the channel.

mdm
+1 for RFC... that brings back memories :)
ANeves
A: 

You have nice article here

šljaker