SrArthur 0 Posted May 23, 2020 Report Share Posted May 23, 2020 alguém sabe como consertar esta dando erro "Expression expected [11, 1] const Discord = require ('discord.js'); const bot = new Discord.Client(); exports.bot = bot; const ytdl = require('ytdl-core'); const streamOptions = {seek: 0, volume: 1}; const token = 'NzEzNTY5ODU4MTI5NzU2MTkx.XsiCGA.1stnbTYavNKglIaPxhaQJmc-WEI'; bot.login(token); bot.on('ready', listener,() =>{ return void } ); bot.on('message', msg =>{ if (msg.author.bot){ return; } if(msg.content.indexOf("youtube") !== -1 && msg.content.toLowerCase().startsWith("?play")){ let CompleteMessage = msg.content.split(' '); let youtubeLink = CompleteMessage[1]; if (VoiceChannel == null) { console.log ('canal não foi encontrado!'); } if(VoiceChannel !== null){ console.log('o canal foi encontrado!'); VoiceChannel.join() .then(connection => { const stream = ytdl(youtubeLink, {filter: 'audioonly'}); const DJ = connection.playStream(stream, streamOptions) DJ.one('end', end =>{ VoiceChannel.leave; }) }) .catch(console.error) } } }); function newFunction() { return 1; } function newFunction() { return 0; } Quote Link to post Share on other sites
Question
SrArthur 0
alguém sabe como consertar esta dando erro "Expression expected [11, 1]
Link to post
Share on other sites
0 answers to this question
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.