mirror of
https://github.com/reality/dbot.git
synced 2024-12-24 19:52:36 +01:00
badwords changes
This commit is contained in:
parent
2954df3a52
commit
64fd389418
@ -12,21 +12,10 @@ var badwords = function(dbot) {
|
|||||||
data.channel = '#42';
|
data.channel = '#42';
|
||||||
badWordLock = true;
|
badWordLock = true;
|
||||||
|
|
||||||
dbot.sessionData.badwords.finished = false;
|
dbot.sessionData.badwords.waiting = true;
|
||||||
|
|
||||||
dbot.say('bots', 'badwords ' + data.channel + ' list');
|
dbot.say('bots', 'badwords ' + data.channel + ' list');
|
||||||
dbot.instance.addListener('PRIVMSG', function(data) {
|
dbot.instance.addListener('PRIVMSG',
|
||||||
if(data.channel === 'bots') {
|
|
||||||
if(data.message.indexOf('bad words list is empty') != -1) {
|
|
||||||
dbot.sessionData.badwords.count = 0;
|
|
||||||
dbot.sessionData.badwords.finished = true;
|
|
||||||
} else {
|
|
||||||
var wordMatch = data.message.valMatch(/\w([1-10])\w(.*)/, 2);
|
|
||||||
dbot.say('reality', wordMatch[1]);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
});
|
|
||||||
|
|
||||||
dbot.sessionData.badwords = {};
|
dbot.sessionData.badwords = {};
|
||||||
badWordLock = false;
|
badWordLock = false;
|
||||||
}
|
}
|
||||||
@ -42,6 +31,20 @@ var badwords = function(dbot) {
|
|||||||
return commands;
|
return commands;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
'listener': function(data) {
|
||||||
|
if(data.channel === 'bots') {
|
||||||
|
if(data.message.indexOf('bad words list is empty') != -1) {
|
||||||
|
dbot.sessionData.badwords.count = 0;
|
||||||
|
dbot.sessionData.badwords.finished = true;
|
||||||
|
} else {
|
||||||
|
var wordMatch = data.message.valMatch(/\w([1-10])\w(.*)/, 2);
|
||||||
|
dbot.say('reality', wordMatch[1]);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
|
||||||
|
'on': 'PRIVMSG',
|
||||||
|
|
||||||
'name': name,
|
'name': name,
|
||||||
|
|
||||||
'ignorable': true
|
'ignorable': true
|
||||||
|
Loading…
Reference in New Issue
Block a user