JaBa/commands/General/ping.js
2021-12-22 17:32:50 +05:00

26 lines
No EOL
605 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;