Skip to content

LunarTaku/global-ticket-system-v2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TicketSystemV2

Global Ticket System V2

Ticket system v2, many new and improved features. Optimized code.

Dependencies:

  • mongoose => npm i mongoose
  • dotenv => npm i dotenv
  • discord-html-transcripts => npm i discord-html-transcripts

Instructions:

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

MongoDB Connection:

  • be sure to add this to your ready.js file. Also add async before the execute in your ready file.
    // Add this to the top of the file
    const { connect } = require('mongoose')
    
    // Add this to your ready.js file
    await connect(MONGO_URI)
      .then(() => {
        console.log(`✅ >>> Successfully connected to MongoDB!`);
      })
      .catch((err) => {
        console.log(err);
      });

Preview

Panel

image

Ticket Panel

image

Closed Ticket Message

image

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.

About

Ticket system v2, many new and improved features. Optimized code.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages