Skip to content
This repository has been archived by the owner on Aug 8, 2023. It is now read-only.

Easily make moderaton command in your bot and take mass actions too.

License

Notifications You must be signed in to change notification settings

Positive2022/discord-moderator.js

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Discord-Moderator


Features:

  • Easy and simple
  • Beginner Friendly
  • Supports Mass actions like Massban, massmute

Support Server

Invite: https://discord.gg/QWKzWpdFZc


Example Code

const {
    Client
} = require('discord.js'); 
const mod = require('discord-moderator') // For discord.js-light, check out discord-moderator-light
// Intents and Not Required Events
const client = new Client();

client.on('ready', async () => {
    console.log('ok')
})
client.on('message', async message => {
    if (message.content.startsWith(`!ban`)) {
        userIDs = ['id1', 'id2'] // Ability to massban. All you need is get multiple IDs by message collector or something.
        reason = 'scam' // Ban reason
        days = 7 // Number of days to purge.
        interval = 2000 //To avoid API Abuse, we will ban 1 ID in every 2 seconds.
        try {
            await mod.Ban(message, userIDs, reason, days, interval)
            console.log('banned')
        } catch (err) {
            if (err.message.startsWith('Invalid ID')) console.log('Invalid ID was provided')
            else if (err.message.startsWith(`No Input.`)) console.log(`No Input was given.`)
            console.log(err)
            //Handle error like this to respond to user input.

        };
    } else if (message.content.startsWith(`!unban`)) {
        userIDs = ['00000'] // Ability to massunban. All you need is get multiple IDs by message collector or something.
        interval = 2000 //To avoid API Abuse, we will unban 1 ID in every 2 seconds.
        try {
            await mod.Unban(message, userIDs, interval)
        } catch (err) {
            if (err.message.startsWith('Invalid ID')) console.log('Invalid ID was provided')
            else if (err.message.startsWith(`No Input.`)) console.log(`No Input was given.`)
            console.log(err)
            //Handle error like this to respond to user input.
        }
    } else if (message.content.startsWith(`!kick`)) {
        userIDs = ['0000000000000000000', 'id2', 'id3'] // Ability to massunkick. All you need is get multiple IDs by message collector or something.
        reason = 'spam' // The reason
        interval = 2000 //To avoid API Abuse, we will kick 1 ID in every 2 seconds.
        try {
            await mod.Kick(message, userIDs, reason, interval)
        } catch (err) {
            if (err.message.startsWith('Invalid ID')) console.log('Invalid ID was provided')
            else if (err.message.startsWith(`No Input.`)) console.log(`No Input was given.`)
            console.log(err)
            //Handle error like this to respond to user input.
        }
    } else if (message.content.startsWith(`!mute`)) {
        userIDs = ['id1', 'id2', 'id3'] // Ability to massunmute. All you need is get multiple IDs by message collector or something.
        roleID = 'id' // The mute role ID. Package will take care if its valid or not.
        interval = 2000 //To avoid API Abuse, we will mute 1 ID in every 2 seconds.
        try {
            await mod.Mute(message, userIDs, roleID, interval)
        } catch (err) {
            if (err.message.startsWith('Invalid ID')) console.log('Invalid ID was provided')
            else if (err.message.startsWith(`No Input.`)) console.log(`No Input was given.`)
            console.log(err)
            //Handle error like this to respond to user input.
        }
    } else if (message.content.startsWith(`!unmute`)) {
        userIDs = ['id1', 'id2', 'id3'] // Ability to massununmute. All you need is get multiple IDs by message collector or something.
        roleID = 'id' // The mute role ID. Package will take care if its valid or not.
        interval = 2000 //To avoid API Abuse, we will mute 1 ID in every 2 seconds.
        try {
            await mod.Unmute(message, userIDs, roleID, interval)
        } catch (err) {
            if (err.message.startsWith('Invalid ID')) console.log('Invalid ID was provided')
            else if (err.message.startsWith(`No Input.`)) console.log(`No Input was given.`)
            console.log(err)
            //Handle error like this to respond to user input.
        }
    }
})
client.login('¯\_(ツ)_/¯');

About

Easily make moderaton command in your bot and take mass actions too.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published