dbot/modules/youare.js
2011-08-25 20:34:39 +01:00

20 lines
456 B
JavaScript

var youAre = function(dbot) {
var dbot = dbot;
return {
'listener': function(data) {
var key = data.message.match(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/);
if(key && Number.prototype.chanceIn(1, 3)) {
dbot.say(data.channel, data.user + ': You\'re ' + key[2]);
}
},
'on': 'PRIVMSG'
};
};
exports.fetch = function(dbot) {
return youAre(dbot);
};