Bringing https://github.com/reality/dbot to the 21st century - again.
Go to file
2012-03-10 19:41:19 +00:00
modules we can't make him too friendly now can we 2012-03-10 18:13:00 +00:00
public New Theme 2011-11-25 14:44:18 +00:00
views do that in heading instead of just title 2012-03-10 17:51:24 +00:00
README.md format fix 2012-03-10 19:41:19 +00:00
run.js Enforce command.js being loaded. Still reloadable, but can't be omitted. 2012-03-10 17:35:50 +00:00
snippets.js Sum function. 2012-03-07 03:22:25 +00:00
timer.js Timers and an ~rmlast command to remove the last quote. 2011-09-04 15:39:03 +01:00

Depressionbot IRC Bot

Introduction

Depressionbot is an IRC bot which aims to be the fanciest IRC bot around - On the general standard of software fanciness, dbot is rated as being 75% the same as bathing in fine, fine grape juice.

Requirements: - Node JS - JSbot, the Javascript library I wrote to handle the IRC protocol and event listeners etc. - Various modules have their own requirements also.

Modules:

Quotes

Admin

Various administration functionality such as banning users, hot-reloading the code and ordering him to talk. Note that commands added here are handled with their own listener, rather than being part of the command logic which is handled by the Command module.

JS - Run Javascript code

This module provides two commands which allow the execution of Javascript code. For regular users, there is the ~js command, which is completely sandboxed, but can still be used for calculation and the like.

> ~js Array(16).join('wat'-1) + " Batman!";
'NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN Batman!'

This feature is fairly safe as the user doesnt have access to anything dangerous, and is safe from infinite loops or locking DBot up because the code which is run is killed if it does not finish within a short amount of time.

For administrators, the incredibly useful ~ajs command is also available. The input for this command is simply eval-ed and therefore has full access to DBots memory. Of course, this is incredibly unsafe, but I find it rather fun. Its useful for administrative activity for which there isnt an in-built command. For example, you could hot-add a new administrator like this:

> ~ajs dbot.admin.push('batman');
2

You can also use this for debugging, or even adding new commands while DBot is running.