3
0
mirror of https://github.com/reality/dbot.git synced 2024-11-27 22:39:26 +01:00
dbot/modules/modehate.js
Luke Slater 7c7953b3a4 debug
2011-10-15 19:48:54 +01:00

24 lines
589 B
JavaScript

var modehate = function(dbot) {
var dbot = dbot;
return {
'listener': function(data, params) {
console.log('caught modehate');
console.log(params[0]);
console.log(params[1]);
console.log(params[2]);
console.log(params[3]);
console.log(params[4]);
//if(dbot.db.modehate.include(data.user)) {
//dbot.instance.send('KICK #42 ' + data.user + ' :gtfo');
//}
},
'on': 'MODE'
};
};
exports.fetch = function(dbot) {
return modehate(dbot);
};