2023-01-17 23:11:22 +01:00
|
|
|
import { SlashCommandBuilder } from "@discordjs/builders";
|
|
|
|
import { ChatInputCommandInteraction, Client, Message } from "discord.js";
|
|
|
|
import { getLocale, getLocalizations } from "../../utils/locales";
|
|
|
|
import { getFilename } from "../../utils/misc";
|
2022-07-03 21:09:57 +02:00
|
|
|
|
|
|
|
export default {
|
2023-01-17 23:11:22 +01:00
|
|
|
scope: () => [],
|
2023-01-17 22:05:38 +01:00
|
|
|
|
2023-01-17 23:11:22 +01:00
|
|
|
data: (client: Client) => {
|
|
|
|
const filename = getFilename(__filename);
|
|
|
|
return new SlashCommandBuilder()
|
|
|
|
.setName(filename.toLowerCase())
|
2024-09-17 11:36:24 +02:00
|
|
|
.setDescription(client.locales.get(client.config.default_lang)!.get(`c_${filename}_desc`)!)
|
2023-01-17 23:11:22 +01:00
|
|
|
.setNameLocalizations(getLocalizations(client, `c_${filename}_name`, true))
|
|
|
|
.setDescriptionLocalizations(getLocalizations(client, `c_${filename}_desc`));
|
|
|
|
},
|
2022-07-03 21:09:57 +02:00
|
|
|
|
2023-01-17 23:11:22 +01:00
|
|
|
interaction: async (interaction: ChatInputCommandInteraction, client: Client) => {
|
|
|
|
const loc = getLocale(client, interaction.locale);
|
2022-07-22 11:46:47 +02:00
|
|
|
|
2023-01-17 23:11:22 +01:00
|
|
|
const sent = (await interaction.reply({
|
|
|
|
content: "Pinging...",
|
|
|
|
fetchReply: true,
|
|
|
|
})) as Message;
|
2022-07-03 21:09:57 +02:00
|
|
|
|
2023-01-17 23:11:22 +01:00
|
|
|
interaction.editReply(
|
|
|
|
`${loc?.get("c_ping1")}: \
|
2022-07-03 21:09:57 +02:00
|
|
|
${sent.createdTimestamp - interaction.createdTimestamp}ms
|
2024-04-02 00:11:54 +02:00
|
|
|
${loc?.get("c_ping2")}: ${client.ws.ping}ms.`,
|
2023-01-17 23:11:22 +01:00
|
|
|
);
|
|
|
|
},
|
2022-07-03 21:09:57 +02:00
|
|
|
};
|