提问者:小点点

为什么我的不和谐机器人只执行我的命令一次,而且只执行一次?


我正在完成一个简单的声音剪辑不和机器人,我通过在python中回收一个基本的音乐机器人示例来制作。我希望机器人做的就是进入调用命令的用户的语音通道(!世界),从声音剪辑文件夹中播放一个随机的声音剪辑,然后离开语音通道。

“简单,对吧?”当然不是,显然不是API。

经过大量的尝试和错误,看了至少3API的修改,我让机器人真正执行命令……一次。命令的任何进一步提示都会遇到蟋蟀。我可以做一个!召唤,它把机器人带入频道,但是!翁布尔命令不再起作用。

def bot_leave(self, ctx):
    state = self.get_voice_state(ctx.message.server)
    coro = state.voice.disconnect()
    fut = asyncio.run_coroutine_threadsafe(coro, state.voice.loop)
    try:
        fut.result()
    except:
        # an error happened sending the message
        pass

@commands.command(pass_context=True, no_pm=True)
async def womble(self, ctx):
    state = self.get_voice_state(ctx.message.server)
    opts = {
        'default_search': 'auto',
        'quiet': True,
    }

    if state.voice is None:
        success = await ctx.invoke(self.summon)
        if not success:
            return

    try:
        random_clip = clip_dir + "\\" + random.choice(os.listdir(clip_dir))
        player = state.voice.create_ffmpeg_player(random_clip, after=lambda: self.bot_leave(ctx))
        player.start()
    except Exception as e:
        fmt = 'An error occurred while processing this request: ```py\n{}: {}\n```'
        await self.bot.send_message(ctx.message.channel, fmt.format(type(e).__name__, e))

我尝试进入python聊天是不和谐API服务器,但很像我的机器人,我遇到了蟋蟀。(我想这就是我试图从已经有4个对话的聊天中寻求支持的原因。)


共1个答案

匿名用户

我猜您可能不再需要帮助,但以防万一您应该尝试删除coroutine.结果()并直接运行它。即更改:

def bot_leave(self, ctx):
state = self.get_voice_state(ctx.message.server)
coro = state.voice.disconnect()
fut = asyncio.run_coroutine_threadsafe(coro, state.voice.loop)
try:
    fut.result()
except:
    # an error happened sending the message
    pass

到:

def bot_leave(self, ctx):
state = self.get_voice_state(ctx.message.server)
coro = state.voice.disconnect()
try:
    asyncio.run_coroutine_threadsafe(coro, state.voice.loop)
except:
    # an error happened sending the message
    pass

这是我唯一能想到的看到您的代码片段的事情,但问题可能出在代码的其他地方。