tris-antispam
v0.0.1
Published
an anti-spam module for discord.js that is easily implemented (copied from spamnya for personal use)
Readme
anti-spam-discord
a spam detector for discord.js bots
Usage
const Discord = require('discord.js')
const spam = require('tris-antispam')
let client = new Discord.Client()
client.on('message', (message) => {
//initiate the detector and log the chats with max 50 logged chats
spam.log(message, 50)
if(spam.tooQuick(3, 1000)){
// when someone send 3 chats in less than a second
}
if(spam.sameMessages(3, 60000)){
// when someone send 3 identical chats within a minute
}
})
