mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
56 lines
1.4 KiB
JavaScript
56 lines
1.4 KiB
JavaScript
const { SlashCommandBuilder } = require("discord.js");
|
|
const BaseCommand = require("../../base/BaseCommand");
|
|
|
|
class Afk extends BaseCommand {
|
|
/**
|
|
*
|
|
* @param {import("../base/Client")} client
|
|
*/
|
|
constructor(client) {
|
|
super({
|
|
command: new SlashCommandBuilder()
|
|
.setName("afk")
|
|
.setDescription(client.translate("general/afk:DESCRIPTION"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("general/afk:DESCRIPTION", null, "uk-UA"),
|
|
ru: client.translate("general/afk:DESCRIPTION", null, "ru-RU"),
|
|
})
|
|
.setDMPermission(true)
|
|
.addStringOption(option =>
|
|
option
|
|
.setName("message")
|
|
.setDescription(client.translate("common:MESSAGE"))
|
|
.setDescriptionLocalizations({
|
|
uk: client.translate("common:MESSAGE", null, "uk-UA"),
|
|
ru: client.translate("common:MESSAGE", null, "ru-RU"),
|
|
})
|
|
.setRequired(true),
|
|
),
|
|
dirname: __dirname,
|
|
ownerOnly: false,
|
|
});
|
|
}
|
|
|
|
/**
|
|
*
|
|
* @param {import("../../base/Client")} client
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
|
*/
|
|
async execute(client, interaction) {
|
|
await interaction.deferReply({ ephemeral: true });
|
|
|
|
const userData = interaction.data.user,
|
|
reason = interaction.options.getString("message");
|
|
|
|
userData.afk = reason;
|
|
|
|
userData.markModified("afk");
|
|
await userData.save();
|
|
|
|
interaction.success("general/afk:SUCCESS", {
|
|
reason,
|
|
}, { edit: true });
|
|
}
|
|
}
|
|
|
|
module.exports = Afk;
|