dbot/modules/modehate.js

19 lines
395 B
JavaScript
Raw Normal View History

2011-10-12 18:09:55 +01:00
var modehate = function(dbot) {
var dbot = dbot;
return {
'listener': function(data) {
2011-10-12 21:29:05 +01:00
console.log('caught modehate');
2011-10-12 18:09:55 +01:00
if(dbot.db.modehate.include(data.user)) {
2011-10-12 21:36:42 +01:00
dbot.instance.send('KICK #42 ' + data.user + ' :gtfo');
2011-10-12 18:09:55 +01:00
}
},
2011-10-12 21:25:42 +01:00
'on': 'MODE'
2011-10-12 18:09:55 +01:00
};
};
exports.fetch = function(dbot) {
return modehate(dbot);
};