/djs-verification-system

This is a multi guild verifecation system for new users that join the server. You can use this to prevent raiders, bad people and many more!

Primary LanguageJavaScriptGNU General Public License v3.0GPL-3.0

Image

djs-verification-system

This is a multi guild verification system for new users that join the server. You can use this to prevent raiders, bad people and many more!

GitHub Repo stars GitHub followers

MAJOR UPDATE!

  • Fixed interaction errors.
  • Added Modals.
  • Added random verification codes in modals.

Dependencies:

mongoose => npm i mongoose

chalk => npm i chalk@4.1.2

dotenv => npm i dotenv

randomized-string => npm i randomized-string

Instructions:

  1. Place the commands into your commands folder.
  2. Place the events in your events folder.
  3. Create a new folder in the bot root direcatory and name it "schemas", and than place the schema in there.
  4. Change all the paths to the right ones if needed.

MongoDB Connection:

be sure to add this to your ready.js file.

    // Add this to the top of the file
    const { connect } = require('mongoose')
    const chalk = require("chalk")
    
    // Add this to your ready.js file
    await connect(MONGO_URI)
      .then(() => {
        console.log(chalk.yellow(`✅ >>> Successfully connected to MongoDB!`));
      })
      .catch((err) => {
        console.log(err);
      });

Preview

2022-08-17.20-56-39.mov

Contributing:

if you want to contribute create a fork of this project and when you are done editing it update the fork and create a pull request.