Go to file
raylu 283f03a108 Add nickserv autoidentify
This also waits until identified before autojoining
Unfortunately, testing for the +r mode to mean registered is network-
specific. This happens to work on Rizon but not on Freenode, for example
2010-10-15 18:19:44 -04:00
doc IRC RFCs and unreal docs for reference 2009-12-12 00:24:41 +00:00
irc Properly export Debug and add Network to Conn 2010-10-15 18:11:14 -04:00
.gitignore Add configuration parsing 2010-10-13 20:09:48 -04:00
Makefile Add a command system 2010-10-13 21:16:16 -04:00
README.md Update README.md some more 2010-10-13 20:09:56 -04:00
handler.go Add nickserv autoidentify 2010-10-15 18:19:44 -04:00
rbot.conf.example Add nickserv autoidentify 2010-10-15 18:19:44 -04:00
rbot.go Add nickserv autoidentify 2010-10-15 18:19:44 -04:00
vims update vims to edit README too, maybe i'll actually add stuff. 2009-12-17 21:14:46 +00:00

README.md

rbot

Getting started

Assuming you have go set up (http://golang.org/), first clone http://github.com/kless/goconfig/ and in that directory, run

make -C config install

Then build the goirc framework in the rbot directory with

make -C irc install

Finally, build the bot with:

make

rbot.conf will be copied. Configure that and then run the bot:

./rbot

Misc.

This project was forked from jessta/goirc which is in turn forked from fluffle/goirc. Both of those projects are focused on developing the goirc framework whereas this is focused on developing a bot.