3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-24 12:59:34 +01:00
dbot/modules/reality.js

27 lines
783 B
JavaScript
Raw Normal View History

2011-08-22 20:24:23 +02:00
var reality = function(dbot) {
var dbot = dbot;
return {
'listener': function(data, params) {
// Ternary for I/reality doesn't seem to work with the regex. Investigate.
2011-08-22 20:24:23 +02:00
if(data.user == 'reality') {
var once = data.message.valMatch(/^I ([\d\w\s,'-]* once)/, 2);
} else {
var once = data.message.valMatch(/^reality ([\d\w\s,'-]* once)/, 2);
}
if(once) {
2011-09-28 15:03:26 +02:00
dbot.db.quoteArrs['realityonce'].push('reality ' + once[1] + '.');
dbot.instance.say(data.channel, '\'reality ' + once[1] + '.\' saved.');
dbot.save();
2011-08-22 20:24:23 +02:00
}
},
'on': 'PRIVMSG'
};
}
exports.fetch = function(dbot) {
return reality(dbot);
}