【发布时间】:2020-05-29 08:12:40
【问题描述】:
我希望我的 discord 机器人在有人 DM 时发送类似“您不允许在此处发送消息”之类的内容
这是我目前所拥有的:
if(message.channel instanceof Discord.DMChannel){
return;
}
任何帮助将不胜感激:)
【问题讨论】:
标签: node.js discord discord.js
我希望我的 discord 机器人在有人 DM 时发送类似“您不允许在此处发送消息”之类的内容
这是我目前所拥有的:
if(message.channel instanceof Discord.DMChannel){
return;
}
任何帮助将不胜感激:)
【问题讨论】:
标签: node.js discord discord.js
您可以回复消息或在与消息相同的频道(DM频道)中发送消息
if(message.channel instanceof Discord.DMChannel && !message.author.bot) {
return message.reply('You can not message me through DMs')
}
或者
if(message.channel instanceof Discord.DMChannel && !message.author.bot) {
return message.channel.send('You can not message me through DMs')
}
【讨论】:
if (message.author.bot) return 放在message 事件的顶部。但出于这个问题的目的,我相应地编辑了我的答案