musique in loop

let stream = ytdl(args[0], {
filter: "audioonly",
quality: 'highestaudio',
seek: 0
});
const player = createAudioPlayer();
const resource = createAudioResource(stream);

const connection = joinVoiceChannel({
channelId: vc.id,
guildId: vc.guild.id,
adapterCreator: vc.guild.voiceAdapterCreator,
})
player.play(resource);
connection.subscribe(player);
let stream = ytdl(args[0], {
filter: "audioonly",
quality: 'highestaudio',
seek: 0
});
const player = createAudioPlayer();
const resource = createAudioResource(stream);

const connection = joinVoiceChannel({
channelId: vc.id,
guildId: vc.guild.id,
adapterCreator: vc.guild.voiceAdapterCreator,
})
player.play(resource);
connection.subscribe(player);
is there a param that can play the music in loop ?
1 Reply
d.js toolkit
d.js toolkit2y ago
- What's your exact discord.js npm list discord.js and node node -v version? - Not a discord.js issue? Check out #other-js-ts. - Consider reading #how-to-get-help to improve your question! - Explain what exactly your issue is. - Post the full error stack trace, not just the top part! - Show your code! - Issue solved? Press the button!

Did you find this page helpful?