forked from GitHub/dbot
18 lines
488 B
JavaScript
18 lines
488 B
JavaScript
var youAre = function(dbot) {
|
|
return {
|
|
'listener': function(data) {
|
|
var key = data.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
|
|
|
|
if(key && key[2] != "" && Number.prototype.chanceIn(1, 25) && data.user != 'aisbot') {
|
|
dbot.say(data.channel, data.user + ': You\'re ' + key[2] + '.');
|
|
}
|
|
},
|
|
|
|
'on': 'PRIVMSG'
|
|
};
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return youAre(dbot);
|
|
};
|