3
0
mirror of https://github.com/reality/dbot.git synced 2025-02-20 07:20:59 +01:00
dbot/modules/modehate.js

19 lines
434 B
JavaScript
Raw Normal View History

2011-10-12 18:09:55 +01:00
var modehate = function(dbot) {
var dbot = dbot;
return {
2011-10-15 19:48:54 +01:00
'listener': function(data, params) {
2011-10-16 20:01:04 +01:00
console.log(typeof(data.raw));
2011-10-16 20:00:04 +01:00
if(dbot.db.modehate.include(data.user) && data.raw.indexOf('-o') != -1) {
2011-10-15 19:51:58 +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);
};