vk.updates.on('message', (context, next ) => {
let blacklisted = ['lettuce', 'geyporno', 'привет']
let foundInText = false;
for (var i in blacklisted){
if (context.text.toLowerCase().includes(blacklisted[i].toLowerCase())) foundInText = true;
}
if (foundInText){
context.send('Подожди, не много,сучка');
} else {
next()
}
})