const { Client, EmbedBuilder, ChannelType, ActionRowBuilder, ButtonBuilder, ButtonStyle, } = require("discord.js"); const modSchema = require("../../Structures/Schemas/mod"); module.exports = { name: "messageCreate", async execute(message, client) { if (message.author.bot) return; const guild = client.guilds.cache.get("1135445496580800512"); const member = message.author; if (message.channel.type === ChannelType.DM) { let data = await modSchema .findOne({ Guild: guild.id, User: member }) .exec(); if (!data) { modSchema.create({ Guild: guild.id, User: member.id, }); } if (data) { await modSchema.create({ Guild: guild.id, User: member.id, }); } if (message.attachments.size > 0) { message.react("❌"); return member.send("I cannot send this message!"); } const posChannel = await guild.channels.cache.find( (c) => c.name === `${message.author.id}` ); if (posChannel) { const embed = new EmbedBuilder() .setColor("Blue") .setAuthor({ name: `${message.author.username}`, iconURL: `${message.author.displayAvatarURL()}`, }) .setDescription(`${message.content}`); posChannel.send({ embeds: [embed] }); message.react(`📩`); return; } const category = guild.channels.cache.get("1139831159434510418"); const channel = await guild.channels.create({ name: message.author.id, type: ChannelType.GuildText, parent: category, topic: `A mail send by ${message.author.tag}`, }); member .send(`Your modmail conversation has been started in ${guild.name}`) .catch((err) => { return; }); const embed = new EmbedBuilder() .setTitle(`NEW MODMAIL`) .setColor("Blue") .setAuthor({ name: `${message.author.username}`, iconURL: `${message.author.displayAvatarURL()}`, }) .setDescription(`${message.content}`) .setTimestamp() .setFooter({ text: "Use the button below to close the mail" }); const button = new ActionRowBuilder().addComponents( new ButtonBuilder() .setCustomId("button") .setStyle(ButtonStyle.Danger) .setLabel("Close") .setEmoji("🔒") ); const m = await channel.send({ embeds: [embed], components: [button] }); const collector = m.createMessageComponentCollector(); collector.on("collect", async (i) => { if (i.customId == "button") { await channel.delete(); member.send( `Your modmail conversation in ${guild.name} has been closed by a moderator` ); } }); m.pin(); message.react(`✉️`); } }, };