dbot/modules/reality.js

27 lines
768 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) {
dbot.db.realiPuns.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);
}