“черный список слов Discord.js” Ответ

В черном списке слов Discord.js

    let blacklisted = ['word', 'word'];
    let foundInText = false;
    for (var i in blacklisted) {
      if (message.content.toLowerCase().includes(blacklisted[i].toLowerCase())) foundInText = true;
    }
    if (foundInText) {
      message.delete();
      Message.channel.send();
Cooperative Cod

черный список слов Discord.js

client.on('message', badboy => {
let args = badboy.content.split(" ").slice(0).join(" ");
if(args.includes(" احا ")) {
  badboy.delete()
badboy.channel.send(`this word not allowed here`)
}
});
EXATUBE™

Ответы похожие на “черный список слов Discord.js”

Вопросы похожие на “черный список слов Discord.js”

Больше похожих ответов на “черный список слов Discord.js” по JavaScript

Смотреть популярные ответы по языку

Смотреть другие языки программирования