forked from GitHub/dbot
24 lines
560 B
JavaScript
24 lines
560 B
JavaScript
var youAre = function(dbot) {
|
|
var name = 'youare';
|
|
|
|
return {
|
|
'listener': function(event) {
|
|
var key = event.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5);
|
|
|
|
if(key && key[2] != "" && Number.prototype.chanceIn(1, 100) && event.user != 'aisbot') {
|
|
event.reply(event.user + ': You\'re ' + key[2] + '.');
|
|
}
|
|
},
|
|
|
|
'on': 'PRIVMSG',
|
|
|
|
'name': name,
|
|
|
|
'ignorable': false
|
|
};
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return youAre(dbot);
|
|
};
|