forked from GitHub/dbot
17 lines
506 B
JavaScript
17 lines
506 B
JavaScript
var april = function(dbot) {
|
|
this.listener = function(event) {
|
|
var match = event.message.match(/^i'm (an? )?([^ ]+)$/i);
|
|
if(match && event.channel == '#april') {
|
|
dbot.say(event.server, 'operserv', 'svsnick ' + event.user + ' ' + match[2]);
|
|
setTimeout(function() {
|
|
event.reply('Hi ' + match[2] + ', I\'m tripbot!');
|
|
}, 1000);
|
|
}
|
|
}
|
|
this.on = 'PRIVMSG';
|
|
};
|
|
|
|
exports.fetch = function(dbot) {
|
|
return new april(dbot);
|
|
};
|