1Lucas1.apk
1Lucas1.apk
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Chresh on 4/3/2025 in #issues
player.connect() not working
Tomorrow or the day after morning I will correct them
10 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by Chresh on 4/3/2025 in #issues
player.connect() not working
The examples in the docs have some problems, you can use the Github testBot which are working correctly.
10 replies
Lavashark to Moonlink
This is how it should work
17 replies
Lavashark to Moonlink
Put JSON.parse(payload)
17 replies
Lavashark to Moonlink
It has the sendPayload
17 replies
Lavashark to Moonlink
In the constructor
17 replies
Lavashark to Moonlink
case "play": {
if (!voiceChannel) {
return interaction.editReply({
content: "You need to be in a voice channel!",
ephemeral: true,
});
}

const query = interaction.options.getString("query");
if (!query || typeof query !== "string") {
return interaction.editReply({
content: "Please specify a valid song name or URL to play.",
ephemeral: true,
});
}

console.log("Query:", query); // Debugging

const player = client.manager.createPlayer({
guildId: guild.id,
voiceChannelId: voiceChannel.id,
textChannelId: interaction.channel.id,
autoPlay: true,
});

player.connect();

try {
const result = await client.manager.search({
query, requester: interaction.user });
if (!result || !result.tracks || !result.tracks.length) {
return interaction.editReply({
content: "No results found for your query.",
ephemeral: true,
});
}

player.queue.add(result.tracks[0]);
if (!player.playing) player.play();

return interaction.editReply({
content: `Added to queue: **${result.tracks[0].title}**`,
});
} catch (error) {
console.error("Error during search:", error);
return interaction.editReply({
content: "An error occurred while searching for the song.",
ephemeral: true,
});
}
}
case "play": {
if (!voiceChannel) {
return interaction.editReply({
content: "You need to be in a voice channel!",
ephemeral: true,
});
}

const query = interaction.options.getString("query");
if (!query || typeof query !== "string") {
return interaction.editReply({
content: "Please specify a valid song name or URL to play.",
ephemeral: true,
});
}

console.log("Query:", query); // Debugging

const player = client.manager.createPlayer({
guildId: guild.id,
voiceChannelId: voiceChannel.id,
textChannelId: interaction.channel.id,
autoPlay: true,
});

player.connect();

try {
const result = await client.manager.search({
query, requester: interaction.user });
if (!result || !result.tracks || !result.tracks.length) {
return interaction.editReply({
content: "No results found for your query.",
ephemeral: true,
});
}

player.queue.add(result.tracks[0]);
if (!player.playing) player.play();

return interaction.editReply({
content: `Added to queue: **${result.tracks[0].title}**`,
});
} catch (error) {
console.error("Error during search:", error);
return interaction.editReply({
content: "An error occurred while searching for the song.",
ephemeral: true,
});
}
}
17 replies
Lavashark to Moonlink
Hello
17 replies
Music is not playing when left at non stop for a couple of hours.
Sorry for the delay, I'm not at home
3 replies
Music is not playing when left at non stop for a couple of hours.
Could you send me a step by step of what you are doing?
3 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by ExoticLegion on 3/29/2025 in #help
Web socket is not defined
Update to v22
5 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by ExoticLegion on 3/29/2025 in #help
Web socket is not defined
Hello, we are currently using nodejs native Websocket that arrived in recent nodejs versions.
5 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by dilshan_ka on 3/25/2025 in #help
How to fix this error?
33 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by dilshan_ka on 3/25/2025 in #help
How to fix this error?
Use the official version they released
33 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by dilshan_ka on 3/25/2025 in #help
How to fix this error?
hi
33 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by dilshan_ka on 3/25/2025 in #help
How to fix this error?
Try this change
33 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by dilshan_ka on 3/25/2025 in #help
How to fix this error?
this.manager = new Manager({ nodes: this.config.Nodes, sendPayload: (guildId, payload) => { const guild = this.guilds.cache.get(guildId); if (guild) guild.shard.send(JSON.parse(payload)); }, defaultVolume: 100, options: { NodeLinkFeatures: true, previousInArray: true, logFile: { log: true, path: "moonlink.log", } }, });
33 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by dilshan_ka on 3/25/2025 in #help
How to fix this error?
In the constructor could you show me the sendPayload?
33 replies
MIA🎶 Moonlink.js - Imagine a Music Application
Created by dilshan_ka on 3/25/2025 in #help
How to fix this error?
Could you send me the play codes and the main parts of moonlink? For example the constructor, etc.
33 replies