My bots doesn't queue the songs when i use the play command, it just plays them. Im trying to get all my commands to work before using spotify & soundcloud in the bot.So, when i use the play command & I try to queue the songs, I cannot queue them. So, can anyone help me ? I have checked the wavelink doc but I couldn't find anything.. (im a beginner with this library)
Code:
import nextcord
from nextcord.ext import commands
import wavelink
import random
import datetime
from datetime import datetime
import os
bot = commands.Bot(command_prefix=">")
@bot.event
async def on_wavelink_track_end(player:wavelink.Player,track:wavelink.Track,reason):
ctx = player.ctx
vc: player = ctx.voice_client
if vc.loop:
return await vc.play(track)
next_song = vc.queue.get()
await vc.play(next_song)
emb = nextcord.Embed(description=f"Now playing {next_song.title}",color=nextcord.Color.magenta())
emb.set_image(url=next_song.thumbnail)
await ctx.send(embed=emb)
@bot.command(aliases=["p"])
async def play(ctx,*,search:wavelink.YouTubeTrack):
if not ctx.voice_client:
vc: wavelink.Player = await ctx.author.voice.channel.connect(cls=wavelink.Player)
elif not getattr(ctx.author.voice,"channel",None):
embed=nextcord.Embed(description=f"{ctx.author.mention}: No song(s) are playing.",color=nextcord.Color.blue())
return await ctx.send(embed=embed)
else:
vc:wavelink.Player = ctx.voice_client
if vc.queue.is_empty and vc.is_playing:
await vc.play(search)
embe = nextcord.Embed(description=f"Now playing [{search.title}]({search.uri}) ",color=nextcord.Color.magenta())
embe.set_image(url=search.thumbnail)
await ctx.send(embed=embe)
else:
await vc.queue.put_wait(search)
emb = nextcord.Embed(description=f"Added [{search.title}]({search.uri}) to the queue.",color=nextcord.Color.magenta())
emb.set_image(url=search.thumbnail)
await ctx.send(embed=emb)
vc.ctx = ctx
setattr(vc,"loop",False)
@bot.command()
async def queue(ctx):
if not ctx.voice_client:
vc: wavelink.Player = await ctx.author.voice.channel.connect(cls=wavelink.Player)
elif not getattr(ctx.author.voice,"channel",None):
embed=nextcord.Embed(description=f"{ctx.author.mention}: No song(s) are playing.",color=nextcord.Color.blue())
return await ctx.send(embed=embed)
else:
vc:wavelink.Player = ctx.voice_client
if vc.queue.is_empty:
emb = nextcord.Embed(description=f"{ctx.author.mention}: The queue is empty. Try adding songs.",color=nextcord.Color.red())
return await ctx.send(embed=emb)
lp = nextcord.Embed(title="Queue",color=nextcord.Color.blue())
queue = vc.queue.copy()
song_count = 0
for song in queue:
song_count += 1
lp.add_field(name=f"[{song_count}] Song",value=f"{song.title}")
return await ctx.send(embed=lp)
bot.run("TOKEN IS HERE JUST NOT LEAKING IT")
Error:
Traceback (most recent call last):
File "/home/runner/Solved-Music/venv/lib/python3.8/site-packages/nextcord/client.py", line 417, in _run_event
await coro(*args, **kwargs)
File "main.py", line 181, in on_wavelink_track_end
song_count += 1
File "/home/runner/Solved-Music/venv/lib/python3.8/site-packages/wavelink/queue.py", line 212, in get
raise QueueEmpty("No items in the queue.")
wavelink.errors.QueueEmpty: No items in the queue.
you need to change your code:
vc:wavelink.Player = ctx.voice_client if vc.queue.is_empty and vc.is_playing:
to the codevc:wavelink.Player = ctx.voice_client if vc.queue.is_empty and **not** vc.is_playing: