DiscordTickets
DiscordTickets copied to clipboard
Question
is there a way to have tickets open under a specify category?
yes, just save the id of that category and provide that category as a parent channel. for example
guild.channels.create("name",{
parent:guild.channels.cache.get("catgeory-id");
})
yes, just save the id of that category and provide that category as a parent channel. for example
guild.channels.create("name",{ parent:guild.channels.cache.get("catgeory-id"); })
Or
parent: 'category id',