2011-08-25 15:14:08 +02:00
|
|
|
var youAre = function(dbot) {
|
|
|
|
var dbot = dbot;
|
|
|
|
|
|
|
|
return {
|
|
|
|
'listener': function(data) {
|
2011-08-26 13:46:12 +02:00
|
|
|
var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
|
2011-08-25 15:34:51 +02:00
|
|
|
|
2011-08-26 16:34:49 +02:00
|
|
|
if(key && key[2] != "" && Number.prototype.chanceIn(1, 10) && data.user != 'aisbot') {
|
2011-08-26 13:46:12 +02:00
|
|
|
dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.');
|
2011-08-25 15:14:08 +02:00
|
|
|
}
|
|
|
|
},
|
|
|
|
|
|
|
|
'on': 'PRIVMSG'
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return youAre(dbot);
|
|
|
|
};
|