0.0.1 • Published 4 years ago

tris-antispam v0.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

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
    }
  })

Tris-Antispam