我试着和机器人吵架 discord.py
. 我在跳过命令区。我已经完成了其他部分,比如play和queue命令。
我试着使用这个命令 self.vc.stop()
停止这首歌,跳到下一首歌,但它不起作用,有人能帮我吗?下面是我执行的详细跳过命令:
class music_cog(commands.Cog):
# all the stuff over here
@commands.command(aliases=["continue"])
async def skip(self, ctx):
if self.vc != "":
self.vc.stop()
# plays the next song
await self.play_music()
1条答案
按热度按时间sxissh061#
我不知道你想做什么,但看来斯帕尔先生的回答可能会对你有所帮助。
取决于您的实现方式
play_music()
,你应该使用after
论据vc.play()
. 以下是提供的代码段:这里的关键是使用
skip()
作为一个羔羊after
据我所知。