3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 14:29:29 +01:00
dbot/modules/april/april.js
2015-03-31 18:32:18 +00:00

17 lines
499 B
JavaScript

var april = function(dbot) {
this.listener = function(event) {
var match = event.message.match(/^i'm ([^ ]+)$/i);
if(match && event.channel == '#april') {
dbot.say(event.server, 'operserv', 'svsnick ' + event.user + ' ' + match[1]);
setTimeout(function() {
event.reply('Hi ' + match[1] + ', I\'m tripbot!');
}, 2000);
}
}
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
return new april(dbot);
};