2023-01-05 15:19:20 +05:00
|
|
|
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
2022-07-26 17:20:10 +05:00
|
|
|
const BaseCommand = require("../../base/BaseCommand");
|
2022-07-23 17:14:42 +05:00
|
|
|
|
|
|
|
class Ping extends BaseCommand {
|
|
|
|
/**
|
|
|
|
*
|
2022-07-29 23:31:08 +05:00
|
|
|
* @param {import("../base/JaBa")} client
|
2022-07-23 17:14:42 +05:00
|
|
|
*/
|
2022-07-29 23:31:08 +05:00
|
|
|
constructor(client) {
|
2022-07-23 17:14:42 +05:00
|
|
|
super({
|
|
|
|
command: new SlashCommandBuilder()
|
|
|
|
.setName("ping")
|
2022-10-13 00:05:36 +05:00
|
|
|
.setDescription(client.translate("general/ping:DESCRIPTION"))
|
|
|
|
.setDMPermission(true),
|
2022-07-29 23:31:08 +05:00
|
|
|
aliases: [],
|
2022-07-26 17:20:10 +05:00
|
|
|
dirname: __dirname,
|
2022-12-15 21:02:38 +05:00
|
|
|
ownerOnly: false,
|
2022-07-23 17:14:42 +05:00
|
|
|
});
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
2022-07-26 17:20:10 +05:00
|
|
|
* @param {import("../../base/JaBa")} client
|
2022-07-23 17:14:42 +05:00
|
|
|
*/
|
|
|
|
async onLoad() {
|
|
|
|
//...
|
|
|
|
}
|
|
|
|
/**
|
|
|
|
*
|
2022-07-26 17:20:10 +05:00
|
|
|
* @param {import("../../base/JaBa")} client
|
2022-08-01 20:06:09 +05:00
|
|
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
2022-08-09 23:48:33 +05:00
|
|
|
* @param {Object} data
|
2022-07-23 17:14:42 +05:00
|
|
|
*/
|
|
|
|
async execute(client, interaction) {
|
2023-01-05 15:19:20 +05:00
|
|
|
const embed = new EmbedBuilder()
|
|
|
|
.setColor(client.config.embed.color)
|
|
|
|
.setFooter({
|
|
|
|
text: client.config.embed.footer,
|
|
|
|
})
|
|
|
|
.setAuthor({
|
|
|
|
name: interaction.translate("general/ping:PONG"),
|
|
|
|
iconURL: client.user.avatarURL(),
|
|
|
|
})
|
|
|
|
.setDescription(interaction.translate("general/ping:PING", {
|
|
|
|
ping: Math.round(client.ws.ping),
|
|
|
|
}));
|
|
|
|
|
|
|
|
interaction.reply({
|
|
|
|
embeds: [embed],
|
2022-07-29 23:31:08 +05:00
|
|
|
});
|
2022-07-23 17:14:42 +05:00
|
|
|
}
|
|
|
|
}
|
2022-07-29 23:31:08 +05:00
|
|
|
|
2022-07-23 17:14:42 +05:00
|
|
|
module.exports = Ping;
|