-1

I have looked for forever on google on how to make a Delphi IRC client. But to no Avail, and being new to the language of Pascal has not helped my endeavors. All I need is code demonstrating how to connect to an IRC server on a channel, and receive anything sent on just that channel(no private messages).

Thanks

Melona380
  • 77
  • 9
  • 1
    Delphi ships with Indy pre-installed, and Indy has a `TIdIRC` client component with many methods including `Join()`, and many events including `OnNotice`, `OnPrivateMessage`. `OnTopic`, etc. – Remy Lebeau Jul 28 '15 at 00:31
  • possible duplicate of [How to receive a message with TidIRC in Delphi?](http://stackoverflow.com/questions/31144263/how-to-receive-a-message-with-tidirc-in-delphi) – Disillusioned Jul 28 '15 at 01:20
  • 1
    http://www.indyproject.org/docsite/html/frames.html?frmname=topic&frmfile=TIdIRC.html – J... Jul 28 '15 at 01:21
  • Yes, I am new to pascal and some actual code examples would be helpful. I have seen all the documentation above. But you can't add 2 + 2 without knowing how to add, so to speak. Any further help would be appericated – Melona380 Jul 28 '15 at 02:18
  • learn from sources of https://en.wikipedia.org/wiki/Visual_IRC – Arioch 'The Jul 28 '15 at 15:30
  • "fpcircbot" I feel lucky -> http://svn.freepascal.org/svn/fpcprojects/fpcircbot/ – Marco van de Voort Jul 29 '15 at 12:27

1 Answers1

1

I one wrote one: RoIRC and open sourced it, but that site apparently doesn't allow open access to its SVN to non-members, so I'll put it up on github sometimes soon. Keep an eye out here

Stijn Sanders
  • 35,982
  • 11
  • 45
  • 67