2011-08-25 15:14:08 +02:00
|
|
|
var youAre = function(dbot) {
|
|
|
|
return {
|
2012-06-05 01:17:51 +02:00
|
|
|
'name': 'youare',
|
|
|
|
'ignorable': false,
|
|
|
|
|
2012-05-25 17:11:07 +02:00
|
|
|
'listener': function(event) {
|
2012-05-25 17:45:47 +02:00
|
|
|
var key = event.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
|
2011-08-25 15:34:51 +02:00
|
|
|
|
2012-05-25 17:45:47 +02:00
|
|
|
if(key && key[2] != "" && Number.prototype.chanceIn(1, 100) && event.user != 'aisbot') {
|
|
|
|
event.reply(event.user + ': You\'re ' + key[2] + '.');
|
2011-08-25 15:14:08 +02:00
|
|
|
}
|
|
|
|
},
|
2012-06-05 01:17:51 +02:00
|
|
|
'on': 'PRIVMSG'
|
2011-08-25 15:14:08 +02:00
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
exports.fetch = function(dbot) {
|
|
|
|
return youAre(dbot);
|
|
|
|
};
|