dbot/modules/ctcp/ctcp.js

14 lines
310 B
JavaScript
Raw Normal View History

var ctcp = function(dbot) {
var commands = {
"\x01VERSION\x01": function(event) {
event.replyNotice("\x01VERSION " + dbot.config.version + "\x01");
}
}
this.commands = commands;
this.on = 'PRIVMSG';
};
exports.fetch = function(dbot) {
return new ctcp(dbot);
};