Skip to content

rainqubit/spamnya

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

spamnya

a spam detector for discord.js bots

Usage

  const Discord = require('discord.js')
  const spam = require('spamnya')
  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
    }
  })

About

spam detector for discord.js bots

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published