client.on('interactionCreate', async (interaction) => { if (interaction.isCommand()) { if (interaction.commandName === 'expedition') { const hostMention = `<@${interaction.user.id}>`; // Extract the selected location from the command options const selectedLocation = interaction.options.getString('location'); const embed = new EmbedBuilder() .setTitle('Expedition in 10 minutes?') .setDescription('Please press the button named "Join" if yes.') .setColor('Random') .setThumbnail('https://media.discordapp.net/attachments/965922634875416606/1146195590355619992/oi8uyoih.png?width=443&height=443') .addFields( { name: 'Host', value: hostMention, inline: true, }, { name: 'Location', value: selectedLocation, // Display the selected location inline: true, } ); const firstButton = new ButtonBuilder() .setCustomId('join') .setLabel('Join') .setStyle(ButtonStyle.Success); const row = new ActionRowBuilder() .addComponents(firstButton); const message = await interaction.reply({ embeds: [embed], components: [row] }); // Schedule an edit after 10 minutes setTimeout(async () => { // Create a new embed without the "Join" button const newEmbed = new EmbedBuilder() .setTitle('The expedition is now being prepared.') .setDescription('Please join the link given.') .setColor('Random') .setThumbnail('https://media.discordapp.net/attachments/965922634875416606/1146195590355619992/oi8uyoih.png?width=443&height=443') .addFields( { name: 'Host', value: hostMention, inline: true, }, { name: 'Location', value: selectedLocation, // Display the selected location in the edited embed inline: true, } ); const button1 = new ButtonBuilder() .setCustomId(`button1`) .setLabel('Start') .setStyle(ButtonStyle.Primary) .setDisabled(false) // Make the button visible const button2 = new ButtonBuilder() .setCustomId(`button2`) .setLabel('Cancel') .setStyle(ButtonStyle.Danger) .setDisabled(false) const newRow = new ActionRowBuilder() .addComponents(button1, button2); // Edit the original message to replace the old embed with the new one await message.edit({ embeds: [newEmbed], components: [newRow] }); }, 10 * 1000); // 10 minutes in milliseconds } } else if (interaction.isButton()) { // Handle the button interaction here if (interaction.customId === 'join') { const user = interaction.user; // Get the user who pressed the button // Check if the user is not already in the expeditionParticipants array if (!expeditionParticipants.includes(user.id)) { expeditionParticipants.push(user.id); // Reply to the interaction to acknowledge the user's action await interaction.reply({ content: `<@${user.id}> has joined the expedition.`, ephemeral: false, // Make this reply non-ephemeral }); } else { // Reply to the interaction to inform the user that they already joined await interaction.reply({ content: `You already joined the expedition.`, ephemeral: true, // Make this reply ephemeral }); } } else if (interaction.customId.startsWith('button1-')) { // Handle the interaction for Button 1 // You can put your logic here for Button 1 // For example, updating some information in the 'newEmbed' // Create a new updated embed (you can customize this part) const updatedEmbed = new EmbedBuilder() .setTitle('Expedition Started!') .setDescription('The expedition is now underway.') .setColor('Random') .setThumbnail('https://media.discordapp.net/attachments/965922634875416606/1146195590355619992/oi8uyoih.png?width=443&height=443') .addFields( { name: 'Host', value: hostMention, inline: true, }, { name: 'Location', value: selectedLocation, inline: true, } ); // Reply to the interaction to send the updated information await interaction.reply({ embeds: [updatedEmbed], ephemeral: false }); } else if (interaction.customId.startsWith('button2-')) { // Create a new updated embed const updatedEmbed = new EmbedBuilder() .setTitle('Expedition Canceled') .setDescription('The expedition has been canceled.') .setColor('Random') .setThumbnail('https://media.discordapp.net/attachments/965922634875416606/1146195590355619992/oi8uyoih.png?width=443&height=443') .addFields( { name: 'Host', value: hostMention, inline: true, }, { name: 'Location', value: selectedLocation, // You can update this field as needed inline: true, } ); // Reply to the interaction to send the updated information await interaction.reply({ embeds: [updatedEmbed], ephemeral: false }); // Remove action row since the expedition is canceled } } });