mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 13:14:58 +05:00
37 lines
No EOL
1 KiB
JavaScript
37 lines
No EOL
1 KiB
JavaScript
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Repeat extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
constructor() {
|
|
super({
|
|
command: {
|
|
name: "repeat", // Application command name.
|
|
type: 3 // Type 3 is MESSAGE COMMAND.
|
|
},
|
|
aliases: ["r"], // Application command aliases.
|
|
dirname: __dirname,
|
|
guildOnly: true // Determines whether your command is only guild.
|
|
});
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
*/
|
|
async onLoad() {
|
|
//...
|
|
}
|
|
/**
|
|
*
|
|
* @param {import("../../base/JaBa")} client
|
|
* @param {import("discord.js").ContextMenuInteraction} interaction
|
|
*/
|
|
async execute(client, interaction) {
|
|
const targetChannel = interaction.member.guild.channels.cache.get(interaction.channelId);
|
|
const targetMessage = await targetChannel.messages.fetch(interaction.targetId);
|
|
return interaction.reply({ content: targetMessage.content, ephemeral: false, fetchReply: true }).then(m => setTimeout(() => m.delete(), 5000));
|
|
}
|
|
}
|
|
module.exports = Repeat; |