3
0
mirror of https://github.com/reality/dbot.git synced 2025-02-17 14:01:04 +01:00
dbot/modules/youare.js

23 lines
609 B
JavaScript
Raw Normal View History

2011-08-25 14:14:08 +01:00
var youAre = function(dbot) {
var dbot = dbot;
return {
'listener': function(data) {
var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
2011-08-25 14:34:51 +01:00
2011-10-20 11:55:09 +01:00
console.log(key[1]);
console.log(key[2]);
console.log(key[3]);
2011-10-17 10:56:49 +01:00
if(key && key[2] != "" && Number.prototype.chanceIn(1, 25) && data.user != 'aisbot') {
dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.');
2011-08-25 14:14:08 +01:00
}
},
'on': 'PRIVMSG'
};
};
exports.fetch = function(dbot) {
return youAre(dbot);
};