73 lines
2.4 KiB
JavaScript
73 lines
2.4 KiB
JavaScript
const { Client, Message, MessageEmbed } = require("discord.js");
|
|
const moment = require("moment");
|
|
module.exports = {
|
|
name: "snipe",
|
|
description: "Snipes a deleted message.",
|
|
category: "Utilities",
|
|
run: async (client, message, args) => {
|
|
var i = 0;
|
|
var description = "";
|
|
const embed = new MessageEmbed()
|
|
.setAuthor(
|
|
`Sniped by ${message.author.tag}`,
|
|
message.author.displayAvatarURL({ dynamic: true })
|
|
)
|
|
.setColor(client.color)
|
|
.setFooter(`Made by ${client.author}`)
|
|
.setURL(client.web);
|
|
client.snipes.reverse().forEach(msg => {
|
|
if (msg.channel.id != message.channel.id) return;
|
|
if (i >= 5) return;
|
|
if (msg.attachment) {
|
|
if (msg.attachment.length == 1) {
|
|
description =
|
|
description +
|
|
`\n\n**Author:** ${msg.author.username}#${
|
|
msg.author.discriminator
|
|
} (Deleted ${moment(msg.date).fromNow()})\n**ID:** ${
|
|
msg.author.id
|
|
}\n**Content:** ${
|
|
msg.content
|
|
}\n**Attachment URL:** [Click to view](${msg.attachment})`;
|
|
i++;
|
|
} else if (msg.attachment.length > 1) {
|
|
const map = msg.attachment.map(
|
|
(s, i) => `**${i + 1}:** [Click to view](${s})`
|
|
);
|
|
description =
|
|
description +
|
|
`\n\n**Author:** ${msg.author.username}#${
|
|
msg.author.discriminator
|
|
} (Deleted ${moment(msg.date).fromNow()})\n**ID:** ${
|
|
msg.author.id
|
|
}\n**Content:** ${msg.content}\n**Attachment URLs:** \n${map.join(
|
|
"\n"
|
|
)}`;
|
|
i++;
|
|
} else {
|
|
description =
|
|
description +
|
|
`\n\n**Author:** ${msg.author.username}#${
|
|
msg.author.discriminator
|
|
} (Deleted ${moment(msg.date).fromNow()})\n**ID:** ${
|
|
msg.author.id
|
|
}\n**Content:** ${msg.content}`;
|
|
i++;
|
|
}
|
|
} else {
|
|
description =
|
|
description +
|
|
`\n\n**Author:** ${msg.author.username}#${
|
|
msg.author.discriminator
|
|
} (Deleted ${moment(msg.date).fromNow()})\n**ID:** ${
|
|
msg.author.id
|
|
}\n**Content:** ${msg.content}`;
|
|
i++;
|
|
}
|
|
});
|
|
if (i == 0) return client.err(message, "Utilities", "snipe", 10);
|
|
embed.setDescription(description);
|
|
embed.setTimestamp();
|
|
return message.inlineReply(embed);
|
|
},
|
|
};
|