const { EmbedBuilder, PermissionsBitField, PermissionFlagsBits, SlashCommandBuilder } = require('discord.js'); // module.exports = { data: new SlashCommandBuilder() .setName('lock').setDescription('Locks a channel') .addChannelOption(option=>option.setName('channel').setDescription('Channel to lock').setRequired(false)) .addStringOption(option=>option.setName('reason').setDescription('Reason of the lock').setRequired(false)) .setDMPermission(false), async execute(interaction) { if (interaction.member.permissions.has(PermissionsBitField.Flags.ManageChannels)) { if (!interaction.guild.members.me.permissions.has(PermissionsBitField.Flags.ManageChannels)) { interaction.reply(`I'm missing the required permission to manage this channel: ManageChannels`); return; } let channel = interaction.options.getChannel('channel'); let reason = interaction.options.getString('reason'); if (!channel) { channel = interaction.channel; } if (!reason) { reason = 'No reason provided'; } const LockMessage = new EmbedBuilder() .setTitle('This channel has been locked!') .setDescription(`Locked for reason: ${reason}`) .setFooter({text: 'You are not muted, this channel is locked for everyone. Please don\'t DM people.'}) .setTimestamp(); channel.permissionOverwrites.set([ { id: interaction.guild.roles.everyone, deny: [PermissionFlagsBits.SendMessages, PermissionFlagsBits.AddReactions, PermissionFlagsBits.SendMessagesInThreads, PermissionFlagsBits.CreatePublicThreads, PermissionFlagsBits.CreatePrivateThreads], }, ]); interaction.reply({content: `Successfully locked ${channel}`, ephemeral: true}); channel.send({embeds: [LockMessage]}); } else { interaction.reply({content: `You don't have the required permission to run this command!`, ephemeral: true}); } }, };