const { ActionRowBuilder, ButtonBuilder, ButtonStyle, ChannelType, ComponentType, EmbedBuilder, ModalBuilder, PermissionsBitField, PermissionFlagsBits, StringSelectMenuBuilder, StringSelectMenuOptionBuilder, SlashCommandBuilder, TextInputBuilder, TextInputStyle } = require('discord.js'); const wait = require('node:timers/promises').setTimeout; // module.exports = { data: new SlashCommandBuilder() .setName('panel').setDescription('Create a panel for tickets') .setDMPermission(false), async execute(interaction) { await interaction.deferReply({ephemeral:true}); await wait(5000); if (!(interaction.member.permissions.has(PermissionsBitField.Flags.Administrator))) { return interaction.editReply("Unauthorized"); } // CHANNELS const ticketpanel = interaction.guild.channels.cache.get('1103389826985771039'); const ticketcategory = interaction.guild.channels.cache.get('1197099684985045002'); const supportteam = interaction.guild.roles.cache.get('1090350772073545728'); const log = interaction.guild.channels.cache.get('1205966383868018801'); // EMBEDS const panelEmbed = new EmbedBuilder() .setColor(0x00ffff) .setAuthor({name: 'USF International', iconURL: 'https://cdn.discordapp.com/icons/1086638377534754897/1f9299b5fcc56efdba49f1caddd02550.png?size=32'}) .setTitle(`${interaction.guild.name} Support`) .setDescription(`Welcome to the USF International Support Panel :wave:,\nwith this panel you can ask for help with:\n- Discord Server Questions/Problems\n- Discord Bots Questions/Problems\n- Minecraft Servers Questions/Problems\n- Claim a Reward\n- Reporting an user\n- Appeal to a punishment\n- Partnership applications\n\n:warning: **Pinging someone from the staff team is not allowed and may result in a server punishment!**\n\nClick on the "Open Support Ticket" Button, answer bot questions and wait for a support team member to help you.`) .setThumbnail(`${interaction.guild.iconURL({size:2048})}`) .setFooter({text: `Panel created by ${interaction.user.username}`, iconURL: `${interaction.user.displayAvatarURL({size:32})}`}) .setTimestamp(); const mainEmbed = new EmbedBuilder() .setColor(0xff0000) .setTitle(`Support Ticket`) .setDescription(`Hello and welcome to your Support Ticket!\n\nPlease answer bot questions below!`); const q1 = new EmbedBuilder() .setTitle('Ticket Type Selection') .setDescription('Please select the type of ticket you need'); const q2 = new EmbedBuilder() .setTitle('Support Type Selection') .setDescription('Please Select the type of Support you need'); const opened = new EmbedBuilder() .setColor(0x00ff00) .setTitle('Support Ticket') .setDescription(`Welcome to your ticket :wave:,\nA member of our ${supportteam} will help you as soon as possible.\n\n:warning: **We kindly ask you to wait patiently and don't ping anyone.**`); // BUTTONS const open = new ButtonBuilder() .setCustomId('opened') .setLabel('Open Support Ticket') .setStyle(ButtonStyle.Primary) .setEmoji('🆘'); const openrow = new ActionRowBuilder().addComponents(open); // SELECT MENUS const type = new StringSelectMenuBuilder() .setCustomId('type') .setPlaceholder('Choose the Type of the Ticket') .addOptions( new StringSelectMenuOptionBuilder() .setLabel('Support Ticket') .setDescription('Get Support with our Services or Claim a Reward') .setValue('support') .setEmoji('🆘'), new StringSelectMenuOptionBuilder() .setLabel('Report Ticket') .setDescription('Report an User breaking the server/bot rules') .setValue('report') .setEmoji('🚓'), new StringSelectMenuOptionBuilder() .setLabel('Appeal Ticket') .setDescription('Appeal to a Server Punishment') .setValue('appeal') .setEmoji('👨‍⚖️'), new StringSelectMenuOptionBuilder() .setLabel('Partnership Ticket') .setDescription('Ask for partnership with this server') .setValue('partner') .setEmoji('👥'), ); const typerow = new ActionRowBuilder().addComponents(type); const supportType = new StringSelectMenuBuilder() .setCustomId('supporttype') .setPlaceholder('Choose the Support Type') .addOptions( new StringSelectMenuOptionBuilder() .setLabel('Discord Server Support') .setDescription('Get Help with the Discord Server') .setValue('discordsupport') .setEmoji('<:discord:1107357450333597837>'), new StringSelectMenuOptionBuilder() .setLabel('Bots Support') .setDescription('Get help with our Bots') .setValue('botsupport') .setEmoji('🤖'), new StringSelectMenuOptionBuilder() .setLabel('Minecraft Support') .setDescription('Get help with our Minecraft Servers') .setValue('mcsupport') .setEmoji('<:minecraft:1107357395920887828>'), new StringSelectMenuOptionBuilder() .setLabel('Claim a Reward') .setDescription('Claim a server reward') .setValue('rewardsupport') .setEmoji('🎁'), ); const supporttyperow = new ActionRowBuilder().addComponents(supportType); // MODALS const partnershipModal = new ModalBuilder() .setTitle('Partnership Request') .setCustomId('partnermodal'); const ServerNameInput = new TextInputBuilder() .setCustomId('partnerservername') .setLabel(`What's the name of your server?`) .setStyle(TextInputStyle.Short); const servername = new ActionRowBuilder().addComponents(ServerNameInput); const OwnerNameInput = new TextInputBuilder() .setCustomId('ownername') .setLabel(`What's the Name of the server owner?`) .setStyle(TextInputStyle.Short); const ownername = new ActionRowBuilder().addComponents(OwnerNameInput); const MembersNumberInput = new TextInputBuilder() .setCustomId('membersnumber') .setLabel(`How many members do you have in your server?`) .setStyle(TextInputStyle.Short); const membersnumber = new ActionRowBuilder().addComponents(MembersNumberInput); const ServerTopicInput = new TextInputBuilder() .setCustomId('servertopic') .setLabel(`What's the topic of your server?`) .setStyle(TextInputStyle.Short); const servertopic = new ActionRowBuilder().addComponents(ServerTopicInput); const ServerLinkInput = new TextInputBuilder() .setCustomId('serverlink') .setLabel(`Send here a link to your server`) .setStyle(TextInputStyle.Short); const serverlink = new ActionRowBuilder().addComponents(ServerLinkInput); partnershipModal.addComponents(servername, ownername, membersnumber, servertopic, serverlink); /* INTERACTION STARTS HERE */ interaction.editReply({content: 'Panel Sent', ephemeral: true}); const panel = await ticketpanel.send({embeds: [panelEmbed], components: [openrow]}); try { const collector = panel.createMessageComponentCollector({ componentType: ComponentType.Button }); collector.on('collect', async i => { if (i.customId==='opened') { // CREATE THE TICKET const ticket = await interaction.guild.channels.create({ name: `ticket-${i.user.username}`, type: ChannelType.GuildText, parent: ticketcategory, permissionOverwrites: [ { id: i.user.id, allow: [PermissionFlagsBits.ViewChannel, PermissionFlagsBits.SendMessages], }, { id: supportteam, allow: [PermissionFlagsBits.ViewChannel, PermissionFlagsBits.SendMessages], }, { id: interaction.guild.roles.everyone, deny: [PermissionFlagsBits.ViewChannel, PermissionFlagsBits.SendMessages], }, ], }) // REPLY TO THE USER i.reply({content:`Ticket created! ${ticket}`, ephemeral: true}); // QUESTIONS const toDelete = await ticket.send({content: `${i.user}`, embeds: [mainEmbed]}); const toDelete2 = await ticket.send({embeds: [q1], components: [typerow]}); try { const confirmation = await toDelete2.createMessageComponentCollector({ componentType: ComponentType.StringSelect }); confirmation.on('collect', async i => { if (i.customId === 'support') { toDelete2.delete(); const toDelete3 = await ticket.send({embeds: [q2], components: [supporttyperow]}); const coll = await toDelete3.awaitMessageComponent(); try { if (coll.customId ==='discordsupport') { opened.setTitle('Discord Support Ticket') } else if (coll.customId === 'botsupport') { opened.setTitle('Bot Support Ticket') } else if (coll.customId === 'mcsupport') { opened.setTitle('Minecraft Support Ticket') } else if (coll.customId === 'rewardsupport') { opened.setTitle('Reward Claim Ticket') } toDelete.delete(); toDelete3.delete(); ticket.send({content: `${i.user}`, embeds: [opened]}); } catch (error) { console.error; ticket.send('An Error Occurred!') } } else if (i.customId === 'report') { ticket.send({content: `${i.user}\n**Required Informations:**\n- Who are you reporting?\n- Why are you reporting them?\n- How do you know they did that?\n- Do you have proof about that? If yes, share them with us.\n\n:warning: Please note: If you are reporting a staff member (Developer or Moderator) it's better if you do that through the USF Mail: \`usfdiscordteam@gmail.com\`.`}) opened.setTitle('Report Ticket') ticket.send({content: `${i.user}`, embeds: [opened]}); } else if (i.customId === 'appeal') { ticket.send({content: `${i.user} \n**Link to the Appeals Server:** https://discord.gg/K3z3GwEDAY\n\n You are allowed to Appeal only there!\n :warning: This ticket will get deleted in 20 seconds!`}) await wait(20000); ticket.delete(); } else if (i.customId === 'partner') { opened.setTitle('Partnership Ticket') await i.showModal(partnershipModal) .then(interaction => { const Aservername = interaction.fields.getTextInputValue('servername'); const Aownername = interaction.fields.getTextInputValue('ownername'); const Amemberscount = interaction.fields.getTextInputValue('membersnumber'); const Aservertopic = interaction.fields.getTextInputValue('servertopic'); const Aserverlink = interaction.fields.getTextInputValue('serverlink'); ticket.send(`**Informations for Developers:**\n- **ServerName:** ${Aservername}\n- **OwnerName:** ${Aownername}\n- **Members Amount:** ${Amemberscount}\n- **ServerTopic:** ${Aservertopic}\n- **ServerLink:** ${Aserverlink}`) ticket.send({content: `${i.user}`, embeds: [opened]}); }).catch(error => { console.error; ticket.send(`An error occurred!\n ${error}`) }) } }) } catch (error) { console.error; ticket.send('An Error Occurred!') } } }) } catch (error) { console.error; log.send('Error with Panel'); } }, };