JaBa/commands/General/ping.js
2022-01-04 02:18:28 +05:00

32 lines
No EOL
618 B
JavaScript

const Command = require("../../base/Command.js");
class Ping extends Command {
constructor(client) {
super(client, {
name: "ping",
dirname: __dirname,
enabled: true,
guildOnly: false,
aliases: ["pong", "latency"],
memberPermissions: [],
botPermissions: ["SEND_MESSAGES"],
nsfw: false,
ownerOnly: false,
cooldown: 2000
});
}
async run(message) {
message.sendT("general/ping:CONTENT", {
ping: "..."
}).then((m) => {
m.sendT("general/ping:CONTENT", {
ping: m.createdTimestamp - message.createdTimestamp
}, {
edit: true
});
});
}
};
module.exports = Ping;