Как воспроизвести случайный звук - PullRequest
1 голос
/ 25 мая 2020

Я создаю бота Discord, и я хочу, чтобы он воспроизводил случайный mp3-файл, когда он присоединяется к каналу.

case"join":
            message.delete( {timeout: 5000})
            const voiceChannel = message.member.voice.channel
            if(voiceChannel) {
                const connection = await voiceChannel.join()
                const files = fs.readdirSync("./sounds/")
                const randFile = files[Math.floor(Math.random() * files.length)]
                const dispatcher = connection.play(randFile)
            } else {
                message.reply("you need to be in a voice channel!").then(message => message.delete( {timeout: 5000}))
            }
            break;

Когда я набираю $ join в чате, он присоединяется к голосовому каналу, который я ' м, но ничего не играет.

1 Ответ

1 голос
/ 25 мая 2020

Вы забыли указать путь к файлу.

case "join":
message.delete({ timeout: 5000 })
const voiceChannel = message.member.voice.channel
if (voiceChannel) {
  const connection = await voiceChannel.join()
  const files = fs.readdirSync("./sounds/")
  const randFile = files[Math.floor(Math.random() * files.length)]
  const dispatcher = connection.play(`./sounds/${randFile}`) // Obviously change `.mp3` to the file extension of your sound files.
} else {
  message.reply("you need to be in a voice channel!").then(message => message.delete({ timeout: 5000 }))
}
break;
...