irc-bot/README.md

28 lines
637 B
Markdown

# DEPRECATED BY [babili-bot](https://tildegit.org/aewens/babili-bot)
irc-bot
aewens's IRC bot for irc.tilde.team
## Setting up
* Install the dependencies using `$ npm install`
* Create the needed JSON files using:
```
$ cp config.example.json config.json
$ cp blacklist.example.json blacklist.json
$ cp memories.example.json memories.json
```
* Fill out the entries in `config.json`
* Run the bot using `node bot.js` or `npm start`
## FAQ
1. When someone runs /mode it sometimes breaks the bot, how do I fix this?
* In line 297 of node_modules/irc/lib/irc.js, change `} else {` to `} else if (channel.modeParams[mode]) {`