require('dotenv').config(); const { Client, IntentsBitField, EmbedBuilder, ComponentType, ActionRowBuilder, ButtonBuilder, ButtonStyle, SlashCommandBuilder } = require('discord.js'); const client = new Client({ intents: [ IntentsBitField.Flags.Guilds, IntentsBitField.Flags.GuildMembers, IntentsBitField.Flags.GuildMessages, IntentsBitField.Flags.MessageContent, ], }); const expeditionParticipants = []; client.on('ready', (c) => { console.log(`👌${c.user.tag} is online.`); }); 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 robloxlink = interaction.options.getString('roblox_link') console.log(`Command received: Expedition with location "${selectedLocation}"`); 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] }); console.log('Expedition message sent.'); // Schedule an edit after 10 minutes setTimeout(async () => { console.log('Editing expedition message...'); // 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, inline: true, }, { name: 'Roblox Profile', value: robloxlink, inline: true, } ); const button1 = new ButtonBuilder() .setCustomId(`button1`) .setLabel('Start') .setStyle(ButtonStyle.Primary) .setDisabled(false); const button2 = new ButtonBuilder() .setCustomId(`button2`) .setLabel('Cancel') .setStyle(ButtonStyle.Danger) .setDisabled(false); const newRow = new ActionRowBuilder() .addComponents(button1, button2); await message.edit({ embeds: [newEmbed], components: [newRow] }); console.log('Expedition message edited.'); }, 10 * 1000); // 10 minutes in milliseconds } } else if (interaction.isButton()) { if (interaction.customId === 'join') { const user = interaction.user; // Get the user who pressed the button console.log(`Button "Join" pressed by user: ${user.username}`); // 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 }); console.log(`User ${user.username} joined the expedition.`); } 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 }); console.log(`User ${user.username} already joined the expedition.`); } } else if (interaction.customId === 'button1') { const hostMention = `<@${interaction.user.id}>`; const message = interaction.message; // Create a new embed with the desired changes const newEmbed = new EmbedBuilder() .setTitle('Expedition has been started!') .setDescription('If you want to join, DM the host!') .setColor('Random') .addFields( // Add a new field here { name: 'Host', value: hostMention, inline: true, } ) .setThumbnail('https://media.discordapp.net/attachments/965922634875416606/1146195590355619992/oi8uyoih.png?width=443&height=443'); const button3 = new ButtonBuilder() .setCustomId(`button3`) .setLabel('End') .setStyle(ButtonStyle.Secondary) .setDisabled(false); const thirdrow = new ActionRowBuilder() .addComponents(button3); await message.edit({ embeds: [newEmbed], components: [thirdrow] }); await interaction.deferUpdate(); // Defer the update after editing the message } else if (interaction.customId === 'button2') { await interaction.deferUpdate(); const message = interaction.message; const cancelEmbed = new EmbedBuilder() .setTitle('Expedition has been canceled.') .setColor('Random') .setThumbnail('https://media.discordapp.net/attachments/965922634875416606/1146195590355619992/oi8uyoih.png?width=443&height=443'); await message.edit({ embeds: [cancelEmbed], components: [] }); } else if (interaction.customId === 'button3') { // Handle "End" button press await interaction.deferUpdate(); const message = interaction.message; // Create a new embed to indicate the expedition has ended const endEmbed = new EmbedBuilder() .setTitle('Expedition has ended!') .setDescription('Thank you for participating. Please note that you will be logged soon.') .setColor('Random') .setThumbnail('https://media.discordapp.net/attachments/965922634875416606/1146195590355619992/oi8uyoih.png?width=443&height=443'); await message.edit({ embeds: [endEmbed], components: [] }); } } }); client.login(process.env.TOKEN);