mirror of
https://github.com/JonnyBro/JaBa.git
synced 2024-11-22 21:24:59 +05:00
102 lines
2.9 KiB
JavaScript
102 lines
2.9 KiB
JavaScript
|
const { SlashCommandBuilder, EmbedBuilder } = require("discord.js");
|
||
|
const BaseCommand = require("../../base/BaseCommand"),
|
||
|
gamedig = require("gamedig");
|
||
|
|
||
|
class Minecraft extends BaseCommand {
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../base/JaBa")} client
|
||
|
*/
|
||
|
constructor(client) {
|
||
|
super({
|
||
|
command: new SlashCommandBuilder()
|
||
|
.setName("minecraft")
|
||
|
.setDescription(client.translate("general/minecraft:DESCRIPTION"))
|
||
|
.addStringOption(option => option.setName("ip")
|
||
|
.setDescription(client.translate("common:IP"))
|
||
|
.setRequired(true)),
|
||
|
aliases: [],
|
||
|
dirname: __dirname,
|
||
|
guildOnly: true,
|
||
|
ownerOnly: false
|
||
|
});
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../../base/JaBa")} client
|
||
|
*/
|
||
|
async onLoad() {
|
||
|
//...
|
||
|
}
|
||
|
/**
|
||
|
*
|
||
|
* @param {import("../../base/JaBa")} client
|
||
|
* @param {import("discord.js").ChatInputCommandInteraction} interaction
|
||
|
* @param {Array} data
|
||
|
*/
|
||
|
async execute(client, interaction) {
|
||
|
await interaction.deferReply();
|
||
|
const ip = interaction.options.getString("ip");
|
||
|
|
||
|
const options = {
|
||
|
type: "minecraft",
|
||
|
host: ip
|
||
|
};
|
||
|
|
||
|
if (ip.split(":").length > 1) {
|
||
|
const splitIp = ip.split(":");
|
||
|
options.host = splitIp[0];
|
||
|
options.port = splitIp[1];
|
||
|
}
|
||
|
|
||
|
var res = await gamedig.query(options).catch(() => {});
|
||
|
|
||
|
if (!res) {
|
||
|
options.type = "minecraftpe";
|
||
|
res = await gamedig.query(options).catch(() => {});
|
||
|
}
|
||
|
|
||
|
if (!res) return interaction.error("general/minecraft:FAILED", null, { edit: true });
|
||
|
|
||
|
const embed = new EmbedBuilder()
|
||
|
.setAuthor({
|
||
|
name: res.name
|
||
|
})
|
||
|
.addFields([
|
||
|
{
|
||
|
name: interaction.translate("general/minecraft:FIELD_STATUS"),
|
||
|
value: interaction.translate("general/minecraft:ONLINE")
|
||
|
},
|
||
|
{
|
||
|
name: interaction.translate("general/minecraft:FIELD_CONNECTED"),
|
||
|
value: `**${(res.raw.players ? res.raw.players.online : res.players.length)}** ${client.getNoun((res.raw.players ? res.raw.players.online : res.players.length), interaction.translate("misc:NOUNS:PLAYERS:1"), interaction.translate("misc:NOUNS:PLAYERS:2"), interaction.translate("misc:NOUNS:PLAYERS:5"))} / **${(res.raw.players ? res.raw.players.max : res.maxplayers)}** ${client.getNoun((res.raw.players ? res.raw.players.max : res.maxplayers), interaction.translate("misc:NOUNS:PLAYERS:1"), interaction.translate("misc:NOUNS:PLAYERS:2"), interaction.translate("misc:NOUNS:PLAYERS:5"))}`
|
||
|
},
|
||
|
{
|
||
|
name: interaction.translate("general/minecraft:FIELD_IP"),
|
||
|
value: res.connect,
|
||
|
inline: true
|
||
|
},
|
||
|
{
|
||
|
name: interaction.translate("general/minecraft:FIELD_VERSION"),
|
||
|
value: res.raw.vanilla.raw.version.name,
|
||
|
inline: true
|
||
|
|
||
|
},
|
||
|
{
|
||
|
name: interaction.translate("general/minecraft:FIELD_PING"),
|
||
|
value: res.raw.vanilla.ping.toString()
|
||
|
}
|
||
|
])
|
||
|
.setColor(client.config.embed.color)
|
||
|
.setThumbnail(`https://eu.mc-api.net/v3/server/favicon/${ip}`)
|
||
|
.setFooter({
|
||
|
text: client.config.embed.footer
|
||
|
});
|
||
|
|
||
|
interaction.editReply({
|
||
|
embeds: [embed]
|
||
|
});
|
||
|
}
|
||
|
}
|
||
|
|
||
|
module.exports = Minecraft;
|