Wrench
Wrench
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
see ya
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
sure-
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
thanks for the help bro
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
now
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
it works
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
alr
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
ok
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
let query = this.interaction.options.getString("query");

let voiceChannel = await this.client.lavalinkClient.getMemberVoiceChannel(
this.interaction.guild,
this.interaction.user.id
);
if (!voiceChannel) {
await this.interaction.reply({
content: "You need to be in a voice channel to play music",
ephemeral: true,
});
return;
}

let results = await this.client.lavalinkClient.search({
query,
requester: this.interaction.user.id,
});

let player = this.client.lavalinkClient.players.get(
this.interaction.guildId
);

if (!player) {
player = this.client.lavalinkClient.players.create({
guildId: this.interaction.guildId,
textChannel: this.interaction.channelId,
voiceChannel: voiceChannel.id,
autoPlay: true,
});

player.connect({
setDeaf: true,
});
}

if (results.loadType === "playlist") {
for (let track of results.tracks) {
player.queue.add(track);
}

await this.interaction.reply({
content: `Queued ${results.playlistInfo.name}`,
});
} else {
player.queue.add(results.tracks[0]);
await this.interaction.reply({
content: `Queued ${results.tracks[0].title}`,
});
}

if (!player.playing) {
await player.play();
}
let query = this.interaction.options.getString("query");

let voiceChannel = await this.client.lavalinkClient.getMemberVoiceChannel(
this.interaction.guild,
this.interaction.user.id
);
if (!voiceChannel) {
await this.interaction.reply({
content: "You need to be in a voice channel to play music",
ephemeral: true,
});
return;
}

let results = await this.client.lavalinkClient.search({
query,
requester: this.interaction.user.id,
});

let player = this.client.lavalinkClient.players.get(
this.interaction.guildId
);

if (!player) {
player = this.client.lavalinkClient.players.create({
guildId: this.interaction.guildId,
textChannel: this.interaction.channelId,
voiceChannel: voiceChannel.id,
autoPlay: true,
});

player.connect({
setDeaf: true,
});
}

if (results.loadType === "playlist") {
for (let track of results.tracks) {
player.queue.add(track);
}

await this.interaction.reply({
content: `Queued ${results.playlistInfo.name}`,
});
} else {
player.queue.add(results.tracks[0]);
await this.interaction.reply({
content: `Queued ${results.tracks[0].title}`,
});
}

if (!player.playing) {
await player.play();
}
i dont have a seperate cmd for joining the voice channel btw
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
alr wai
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
no
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
its still not connecting, and there's no voice server update events
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
ok it doesnt work
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
wait a sec
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
yea i did
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
alr
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
No description
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
there's no voice server update event 💀
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
let me try loggin the raw event
66 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Wrench on 5/3/2024 in #help
Tracks are loaded but the bot is not connecting to vc
No description
66 replies