Awesome
Squeebot
This is a node.js powered IRC bot made by LunaSquee and djazz
Getting started
- Clone this repo
- Install the dependencies
npm install
- Copy and edit the settings
cp settings.example.json settings.json
- Run the bot
npm start
Modules
You are able to write modules for the bot, there is an example module in the modules
directory.
To get the module to auto-load, you can put it in the settings file's modules
object and give it a property "autorun":true
.
You can load modules from the console by doing /module load myModuleName
. There are also commands reload, unload and reloadall.
More info on how to write modules and an example
IRC Relay Server
This bot also provides a relay that outputs the messages sent to connected channels. This feature was designed for MC-Squeebot to post irc messages into the Minecraft chat.
To enable the relay you must set enableRelay
to true in the settings. You can see how to use it in the MC-Squeebot code.