redo youare [#131]

This commit is contained in:
reality 2013-01-15 15:43:02 +00:00
parent 126810f180
commit 6896536a3b

View File

@ -1,19 +1,17 @@
var youAre = function(dbot) { var youAre = function(dbot) {
return { this.name = 'youare';
'name': 'youare', this.ignorable = false;
'ignorable': false,
'listener': function(event) { this.listener = function(event) {
var key = event.message.valMatch(/(\bis\b|\bare\b)\s+([\w\s\d]*?)(\s+)?(,|\.|\band\b|$)/, 5); 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') { if(key && key[2] != "" && Number.prototype.chanceIn(1, 100) && event.user != 'aisbot') {
event.reply(event.user + ': You\'re ' + key[2] + '.'); event.reply(event.user + ': You\'re ' + key[2] + '.');
} }
}, }.bind(this);
'on': 'PRIVMSG' this.on = 'PRIVMSG';
};
}; };
exports.fetch = function(dbot) { exports.fetch = function(dbot) {
return youAre(dbot); return new youAre(dbot);
}; };