Empresas
Empregos
  • Sobre nós
  • Soluções
    • Publicação de vagas
      Publique sua vaga e receba candidatos qualificados em 48h.
    • Avaliações de candidatos
      Mais de 500 testes técnicos e psicológicos, mais anti-fraude.
    • Headhunting
      Busca executiva personalizada do início ao fim.
    • Folha de Pagamento + EOR
      Dispersão de folha e EOR em mais de 15 países da LATAM.
  • Preços
  • Empregos

0

266
Visualizações
Discord.js | How to get members currently connected to a Voice Channel?

I'm trying to get the members who are currently connected to a specific voice channel. With some properties I could get them, but the problem I found was that the members who are listed aren't the ones who are currently connected but the ones who had been connected to the voice channel when the bot started running.

This is my code (it's shortened but is copied):

const {Client, Intents} = require('discord.js')
const client = new Client({ intents: [Intents.FLAGS.GUILDS, Intents.FLAGS.GUILD_MESSAGES, Intents.FLAGS.GUILD_PRESENCES, Intents.FLAGS.GUILD_MEMBERS] })
client.on('messageCreate', messagesHandler)

function messagesHandler (msg) {
  if (msg.author.bot) return false;
  console.log(`Msg received: ${msg.content}`)

  if (msg.content.startsWith('/')) {
    const msgArr = msg.content.split(' ')

    switch (msgArr[0]) {
      case '/list':
        listCommand(msg, msgArr)
        break
    }
  }
}

async function listCommand (msg, msgArr) {
  if(!msgArr[1]) {
    const voiceChannel = await getChannel(msg, 'Voice1', true).fetch()
    if (!voiceChannel) {
      msg.channel.send('ERROR: Voice1 channel not found')
    } else {
      await getCurrentChannelMembers(msg, voiceChannel)
    }
  }
}

function getChannel(msg, channel, voiceChannel = false) {
  return msg.guild.channels.cache.find(c => c.name === channel && (!voiceChannel || c.isVoice()))
}

async function getCurrentChannelMembers (msg, channel) {
  const fetchedChannel = await channel.fetch(true)
  const members = fetchedChannel.members
  console.log('Members: ', members)
}

Any help would be appreciated!

about 4 years ago · Juan Pablo Isaza
1 Respostas
Responde à pergunta

0

Your bot needs GUILD_VOICE_STATES intent

const client = new Client({ 
  intents: [
    Intents.FLAGS.GUILDS,
    Intents.FLAGS.GUILD_MESSAGES, 
    Intents.FLAGS.GUILD_PRESENCES,
    Intents.FLAGS.GUILD_MEMBERS,
    Intents.FLAGS.GUILD_VOICE_STATES
  ] 
})
about 4 years ago · Juan Pablo Isaza Relatório
Responde à pergunta
Encontrar trabalhos remotos

Descubra a nova forma de encontrar um emprego!

melhores empregos
Principais categorias de trabalho
Empresas
Postar vaga Preços Comercial
Jurídico
Termos e Condições Política de privacidade
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomende algumas ofertas para mim
Preciso de ajuda