background preloader

IRC bots

Facebook Twitter

How to Develop an IRC Bot: 11 Steps. Computers: Software: Internet: Clients: Chat: IRC: Bots. RFC 1324 - A Discussion on Computer Network Conferencing. [Docs] [txt|pdf] INFORMATIONAL Network Working Group D.

RFC 1324 - A Discussion on Computer Network Conferencing

Reed Request for Comments: 1324 May 1992 Status of this Memo This memo provides information for the Internet community. It does not specify an Internet standard. Distribution of this memo is unlimited. Abstract This memo is intended to make more people aware of the present developments in the Computer Conferencing field as well as put forward ideas on what should be done to formalize this work so that there is a common standard for programmers and others who are involved in this field to work with. 1.1 Conferencing in general today Conferences today are an integral part of the business world in many ways. RFC 1324 Computer Network Conferencing May 1992 other features of the telephone system which provide for conferencing between people around the globe at a cost effective rate. Travis McCrea » Write a basic Python IRC Bot. So lets get started, the basics are very simple there are several ways to write an IRC bot in Python, but this one is pretty good.

Travis McCrea » Write a basic Python IRC Bot

If you want to go more advanced I would suggest looking into twistedmatrix.com Twisted. First you make a file called ircBot.py, or whatever you want to call it. We have to put the she-bang line, which you should include in all your code. #! /usr/bin/env python Now we have to import the modules necessary for the program. import […] Code Project: Build an IRC bot. Here at TuxRadar we love quick little programming projects, and hope you do too.

Code Project: Build an IRC bot

The word 'projects' is important here: we're not going to dwell on theory or mundane technical gubbins, but instead look at making cool things - after all, programming is the most fun when you're actually making things rather than spending hours learning about tedious loop constructs! In this tutorial we're going to produce an IRC bot written in Perl. If you're an old-school internetter, you'll probably have used IRC before; if not, see the Hang on, what is IRC? Box explaining the basics overpage. Let Isaac help you build IRC bots. Takeaway: Writing an IRC bot does not have to be difficult or tedious.

Let Isaac help you build IRC bots

Isaac is an IRC bot framework library that provides a simple, easy to use domain specific language that abstracts away the complexities of the task. Gpeopl.es. I haven’t written on this blog in quite a while, so I thought I would share with you all some code that I have been writing in C#.

gpeopl.es

I only started coding in C# about a week and a half ago, so I guess one could call this my first robust fully working application in C#. For those of you who aren’t aware IRC is an acronym for Internet Relay Chat, a text based chat protocol that started in the 1980′s and is still pretty much used to the present day on networks such as Quakenet. The program that I have written, joins a channel on the IRC server, and updates via a MYSQL database who is currently online. I’ve also written a very basic PHP frontend so that people can see on a web page who is online and who is offline.

It’s a very basic application, but it is one that I am going to develop further on a fuller basis. The program consists of 4 files: ircbot.cs - Main class of the program. mysqldatabase.cs - MYSQL connection class. ircstats.php – PHP frontend. RFC 1459 - Internet Relay Chat Protocol. [ Docs ] [ txt | pdf ] Updated by: 2810 , 2811 , 2812 , 2813 EXPERIMENTAL Network Working Group J.

RFC 1459 - Internet Relay Chat Protocol

Oikarinen Request for Comments: 1459 D. Reed May 1993 Status of This Memo This memo defines an Experimental Protocol for the Internet community. Discussion and suggestions for improvement are requested. Please refer to the current edition of the "IAB Official Protocol Standards" for the standardization state and status of this protocol. A quick, basic guide on the IRC protocol - Macha. While working on my Haskell IRC bot , I needed some information on the actual IRC protocol.

A quick, basic guide on the IRC protocol - Macha

Much of this information sadly isn't available in any centralised format, and much of the information that is there is just a copy/paste of the RFC. There are two formal descriptions of the IRC protocol, an older one ( RFC 1459 ) and a newer one ( RFC 2812 ), though the actual protocol as used by most servers doesn't adhere exactly to either of these. So, here is a short summary of the information that I have gathered in my research. This is by no means a comprehensive tutorial, but it is sufficient to write a basic IRC bot. The first part of the IRC protocol is the rough layout of messages. The next part of the protocol, seperated by a space is the command name, which is in all-caps. After this come the arguments for the command, again, space seperated. Finally, the command is terminated by \r\n not \n according to the spec, though it seems most servers will accept either. RFC 2812 - Internet Relay Chat: Client Protocol.

[C#] /* IRC Bot in C# Mono with MYSQL functionality * @author: Gareth Peoples * @em.