module.exports.run = async (bot, message, args) => {
let ticketreason = args[1];
let ticketname = "ticket" + ticketreason;
message.guild.createChannel("tickets", "category")
message.guild.createChannel(ticketname, "text");
}
So I've got this very simple and basic code here. I am trying to find a way to check if a channel exists before creating it. I've attempted to search around the discord.js documentation a few times for a solution, but I've had no luck so far. I need an explanation for how I can achieve this.
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…