edomango
edomango
DIAdiscord.js - Imagine an app
Created by edomango on 7/19/2024 in #djs-questions
Bug of discord.js Message.mentions.members . Doesn't include all mentioned members.
I am fetching a message by id and I am trying to read mentioned members in the message. The problem is it doesn't return all mentioned members.
35 replies
DIAdiscord.js - Imagine an app
Created by edomango on 2/26/2023 in #djs-voice
How can i loop an audio resource?
I've tried this
client.audioPlayer.on(AudioPlayerStatus.Idle, () => {
if (!client.audioPlayer) return;
client.audioPlayer.play(client.waitaudio);
});
client.audioPlayer.on(AudioPlayerStatus.Idle, () => {
if (!client.audioPlayer) return;
client.audioPlayer.play(client.waitaudio);
});
But i got an error saying Error: Cannot play a resource that has already ended.
14 replies