如何制作discord.js反垃圾邮件

问题描述 投票:0回答:1

我想用Discord.js库编写一个反垃圾邮件系统。

这是我的作品:

client.on("message", (message) => {
//let's use something like a spam variable for 10 or more messages sent within 5000ms
if(message.content === spam) {
 message.reply("Warning: Spamming in this channel is forbidden.");
 console.log(message.author.username + " (" + message.author.id + ") has sent 10 messages or more in 5 seconds in " + message.channel.name + ".");
}
});

我如何制作垃圾邮件变量

bots discord discord.js spam spam-prevention
1个回答
0
投票

也许discord-anti-spam将为您提供帮助。

© www.soinside.com 2019 - 2024. All rights reserved.