mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 05:04:58 +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
|
|
* @param {Object} data
|
|
*/
|
|
async execute(client, interaction, data) {
|
|
await interaction.deferReply({ ephemeral: true });
|
|
|
|
const reason = interaction.options.getString("message");
|
|
|
|
data.userData.afk = reason;
|
|
|
|
data.userData.markModified("afk");
|
|
await data.userData.save();
|
|
|
|
interaction.success("general/afk:SUCCESS", {
|
|
reason,
|
|
}, { edit: true });
|
|
}
|
|
}
|
|
|
|
module.exports = Afk;
|