Bot joined in channel but is fullmuted, why?

In voice channel my discord bot is fullmuted, so he cant play a sound. Is there a simple fix?
const {
joinVoiceChannel,
createAudioPlayer,
createAudioResource,
entersState,
VoiceConnectionStatus,
} = require('@discordjs/voice');
const ytdl = require('ytdl-core');

async function playSound(bot, message) {
if (message.content.startsWith('!play')) {
const args = message.content.split(' ');
const url = args[1];

const connection = joinVoiceChannel({
channelId: message.member.voice.channelId,
guildId: message.guild.id,
adapterCreator: message.guild.voiceAdapterCreator,
});

if (!message.member.voice.channel) {
message.reply('Du bist in keinem Voicechannel!');
return;
}

try {
await entersState(connection, VoiceConnectionStatus.Signalling, 5e3);

const player = createAudioPlayer();
connection.subscribe(player);

if (url.includes('youtube.com')) {
const resource = createAudioResource(ytdl(url, {filter: 'audioonly'}));
player.play(resource);
} else if (url.includes('soundcloud.com')) {

} else {
message.reply('Der Link ist nicht von Youtube oder Soundcloud!');
}
} catch (error) {
console.error(error);
message.reply('Ein Fehler ist aufgetreten.');
}
}
}

module.exports = {playSound};
const {
joinVoiceChannel,
createAudioPlayer,
createAudioResource,
entersState,
VoiceConnectionStatus,
} = require('@discordjs/voice');
const ytdl = require('ytdl-core');

async function playSound(bot, message) {
if (message.content.startsWith('!play')) {
const args = message.content.split(' ');
const url = args[1];

const connection = joinVoiceChannel({
channelId: message.member.voice.channelId,
guildId: message.guild.id,
adapterCreator: message.guild.voiceAdapterCreator,
});

if (!message.member.voice.channel) {
message.reply('Du bist in keinem Voicechannel!');
return;
}

try {
await entersState(connection, VoiceConnectionStatus.Signalling, 5e3);

const player = createAudioPlayer();
connection.subscribe(player);

if (url.includes('youtube.com')) {
const resource = createAudioResource(ytdl(url, {filter: 'audioonly'}));
player.play(resource);
} else if (url.includes('soundcloud.com')) {

} else {
message.reply('Der Link ist nicht von Youtube oder Soundcloud!');
}
} catch (error) {
console.error(error);
message.reply('Ein Fehler ist aufgetreten.');
}
}
}

module.exports = {playSound};
12 Replies
d.js toolkit
d.js toolkit2y ago
• What's your exact discord.js npm list discord.js and node node -v version? • Post the full error stack trace, not just the top part! • Show your code! • Explain what exactly your issue is. • Not a discord.js issue? Check out #useful-servers.
tark
tarkOP2y ago
discord version 14 correct ytdj version
tark
tarkOP2y ago
This
chewie
chewie2y ago
Thats the default state the bot enters a voicechannel with, you can disable that in the joinVoiceChannel function, but its not necessary
tark
tarkOP2y ago
well he cant play sounds then i tried with selfMute: false but it dont work becasue he shoukd play simple sounds
chewie
chewie2y ago
selfDeaf
tark
tarkOP2y ago
ah lol thank you now If I add the intents for it: GuildVoiceStates I get this error if i play some sound:
Error: Cannot play audio as no valid encryption package is installed.
- Install sodium, libsodium-wrappers, or tweetnacl.
- Use the generateDependencyReport() function for more information.
Error: Cannot play audio as no valid encryption package is installed.
- Install sodium, libsodium-wrappers, or tweetnacl.
- Use the generateDependencyReport() function for more information.
i cant install sodium on webstorm
chewie
chewie2y ago
You shouldnt use webstorm for bot development anyway Besides, you install it on your pc, not webstorm Webstorm has nothing to do with this
tark
tarkOP2y ago
Well webstorm is for js, but yes something this have problems :/ is vs better for bot dev?
chewie
chewie2y ago
Yes Well, vscode
tark
tarkOP2y ago
okay thank you works now what are the most important arguments to not use webstorm?
chewie
chewie2y ago
Search for webstorm on this server and you will find a lot

Did you find this page helpful?