Ticket System

Hey! Im trying to create a ticket system, but arent to sure where to start. I am pretty new, so all help is appreciated. Thanks!
No description
8 Replies
d.js toolkit
d.js toolkit2d ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button!
d.js docs
d.js docs2d ago
:method: GuildChannelManager#create() [email protected] Creates a new channel in the guild.
// Create a new text channel
guild.channels.create({ name: 'new-general', reason: 'Needed a cool new channel' })
.then(console.log)
.catch(console.error);
// Create a new text channel
guild.channels.create({ name: 'new-general', reason: 'Needed a cool new channel' })
.then(console.log)
.catch(console.error);
treble/luna
treble/luna2d ago
this is how you create a channel so you need something like a button or command to trigger that
rockers6879
rockers6879OP6h ago
Sorry for late response been with family, but im confused on where to start when I say "!dashboard" it sends the ticket dropdown on the embed
treble/luna
treble/luna6h ago
then handle your ticket creation logic upon receiving that interaction
rockers6879
rockers6879OP6h ago
i get that but, im extremley confused on how to start setting up a ticket system, as this is my first project like this
d.js docs
d.js docs6h ago
:guide: Home: What's new read more
treble/luna
treble/luna6h ago
The guide is your best friend then

Did you find this page helpful?