const { ActionRowBuilder, ButtonBuilder, ButtonStyle, ChannelType, EmbedBuilder, PermissionsBitField, PermissionFlagsBits, SlashCommandBuilder } = require('discord.js'); // module.exports = { data: new SlashCommandBuilder() .setName('panel').setDescription('Create a panel for tickets') .addChannelOption(option=>option.setName('ticketpanel').setDescription('Channel where to post the tickets panel').setRequired(true)) .addChannelOption(option=>option.setName('ticketcategory').setDescription('Category where tickets will be created').setRequired(true)) .addRoleOption(option=>option.setName('supportteam').setDescription('support team that should have access to tickets').setRequired(true)) .addChannelOption(option=>option.setName('log').setDescription('Channel where to post details abou support tickets').setRequired(true)) .setDefaultMemberPermissions(PermissionFlagsBits.Administrator) .setDMPermission(false), async execute(interaction) { const ticketpanel = interaction.options.getChannel('ticketpanel'); const ticketcategory = interaction.options.getChannel('ticketcategory'); const supportteam = interaction.options.getRole('supporteam'); const log = interaction.options.getChannel('log'); const panelEmbed = new EmbedBuilder() .setColor(0x00ffff) .setTitle(`${interaction.guild.name}`) .setDescription(`**Get Help from our ${supportteam}**\n\`-\`Click on the "Open Support Ticket" Button, answer bot questions and wait for a support team member to help you.\n:warning: **The staff team gets automatically pinged, you don't need to ping them again.**`) .setThumbnail(`${interaction.guild.iconURL({size:2048})}`) .setFooter({text: `Panel created by ${interaction.user.username}`, iconURL: `${interaction.user.displayAvatarURL({size:32})}`}) .setTimestamp(); const open = new ButtonBuilder() .setCustomId('opened') .setLabel('Open Support Ticket') .setStyle(ButtonStyle.Primary) .setEmoji('🆘'); const op = new ActionRowBuilder() .addComponents(open); interaction.reply({content: 'Panel sent', ephemeral: true}); const ticket = await interaction.channel.send({embeds: [panelEmbed], components: [op]}); const filter1 = i => i.user.id === interaction.user.id; try { const confirmation = await ticket.awaitMessageComponent({filter: filter1, time: 800_000}) if (confirmation.customId==='opened') { const created = await interaction.guild.channels.create({ name: `ticket-${interaction.user}`, description: 'Support ticket', type: ChannelType.GuildText, parent: ticketcategory, permissionOverwrites: [ { id: interaction.user, allow: [PermissionFlagsBits.ViewChannel, PermissionFlagsBits.SendMessages], }, { id: supportteam, allow: [PermissionFlagsBits.ViewChannel, PermissionFlagsBits.SendMessages], }, { id: interaction.guild.roles.everyone, deny: [PermissionFlagsBits.ViewChannel], }, ], }) const manager = new EmbedBuilder() .setTitle(`${interaction.user.username} Support Ticket`) .setDescription(`Hello ${interaction.user} and welcome to your Support Ticket!\n\nPlease answer to questions below.`); const toDelete = await created.send({ content: `${interaction.user}`, embeds: [manager]}); } } catch { interaction.editReply('An Error Occurred'); console.error; } } }