【发布时间】:2021-06-11 07:06:31
【问题描述】:
我想向我的 discord.js 机器人添加一个仅限媒体的频道。我希望人们能够只发送链接和图像。我已将图像作为频道的一部分,但是当用户发送链接时,我的机器人会删除它们。例如prnt.sc/xxxxx。
这是我的代码:
bot.on("message", msg => {
if (msg.channel.id !== "815002698499096616") {
return;
}
// Checking if the author is a bot.
if (msg.author.bot) {
return false;
}
// Deleting the message if there are 0 attachments in the message.
if (msg.attachments.size == 0) {
msg.delete();
}
});
【问题讨论】:
-
不..我想制作照片和链接频道
-
从外观上看,您已经知道如何检查邮件是否有附件,所以下一步是使用正则表达式来确定邮件是否包含链接。
标签: node.js discord discord.js