javascript – discord.js bot回复自己

前端之家收集整理的这篇文章主要介绍了javascript – discord.js bot回复自己前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我目前正在编写我的第一个discord bot,它已经可以播放YouTube音乐了.
if (message.content.includes("Good Job") || 
    message.content.includes("good job")) {
    message.channel.sendMessage("Good Job everyone :smirk:");
}

如你所见,如果有人输入“好工作”(这只是一个例子),那么机器人将回复“每个人都很好:smirk :),但随后垃圾邮件将开始:机器人读取他自己的消息并回复它.

如何防止机器人自行回答?

解决方法

在on message事件中使用它:
if (message.author.bot) return;

了解更多信息:
https://anidiotsguide.gitbooks.io/discord-js-bot-guide/coding-guides/a-basic-command-handler.html

原文链接:https://www.f2er.com/js/156344.html

猜你在找的JavaScript相关文章