JaBa/commands/Music/seek.js

39 lines
969 B
JavaScript
Raw Normal View History

2021-12-10 21:39:54 +05:00
const Command = require("../../base/Command.js");
const ms = require("ms");
class Seek extends Command {
constructor (client) {
super(client, {
name: "seek",
dirname: __dirname,
enabled: true,
guildOnly: true,
aliases: [],
memberPermissions: [],
botPermissions: [ "SEND_MESSAGES", "EMBED_LINKS" ],
nsfw: false,
ownerOnly: false,
cooldown: 5000
});
}
async run (message, args) {
const queue = this.client.player.getQueue(message);
const voice = message.member.voice.channel;
2021-12-11 01:11:50 +05:00
if (!voice) return message.error("music/play:NO_VOICE_CHANNEL");
2021-12-10 21:39:54 +05:00
2021-12-11 01:11:50 +05:00
if (!queue) return message.error("music/play:NOT_PLAYING");
2021-12-10 21:39:54 +05:00
const time = ms(args[0]);
2021-12-11 01:11:50 +05:00
if (isNaN(time)) return message.error("music/seek:INVALID_TIME");
2021-12-10 21:39:54 +05:00
// Change the song position
await this.client.player.setPosition(message, queue.currentStreamTime + time);
2021-12-11 01:11:50 +05:00
2021-12-10 21:39:54 +05:00
// Send the embed in the current channel
message.sendT("music/seek:SUCCESS");
}
2021-12-11 01:11:50 +05:00
};
2021-12-10 21:39:54 +05:00
module.exports = Seek;