Skip to content

Latest commit

 

History

History
54 lines (45 loc) · 1.71 KB

README.md

File metadata and controls

54 lines (45 loc) · 1.71 KB

Recode by Ducko - Changed everything more clean and other stuff addded

Credit to Roald for helping with some of the code<3

Dependencies:

Changelog #1

  • Changed Design
  • Added Add-Remove Command
  • Added Button Handler requirements
  • Added modal Handler requirements
  • Added Claim Button
  • Added Modal Close Reason
  • Added Ticket Counter
  • Added Delete-Setup Command
  • Added Delete-Counter Command (Resets the counter)
  • Fixed ClaimedBy code in Ticket Modal

Instructions:

  1. Place Commands in your command folder
  2. Place Buttons in your button folder using Roald Button Handler
  3. Place Modals in your modal folder using Roald Modal Handler
  4. Place Schemas the schemas in your schema folder
  5. Make the paths right for your bot!
  6. Any errors? Scroll down!

MongoDB Connection:

  • be sure to add this to your ready.js file.
const { MongoDB } = require("MongoDB URL");
const { connect } = require("mongoose");

module.exports = {
  name: "ready",
  once: true,
  async execute(client) {
    connect(MongoDB).then(() => {
      console.log(`Mongoose Connected`);
    });
  },
};

Any errors join my Discord or dm me! Ducko#7068

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.