Discord.py使用wait_for检查用户输入

时间:2020-06-20 15:31:44

标签: python discord discord.py

我正在尝试创建一个日志设置命令,例如:“消息编辑日志会打开吗?”如果是:发送频道ID。我试图创建的命令与此类似。我的代码是这个。我是discord.py的菜鸟。这是代码,感谢您的帮助。

注意:执行命令时没有任何输出。

@bot.command(name="logsetup")
@commands.guild_only()
@commands.has_any_role("Head Admininstaror", "Adminstaror", "Owner")
async def log_setup(self, ctx):
    await ctx.send("Message edit logs: On/Off")
    msg = await bot.wait_for('message', check=lambda message: message.author == ctx.author)
    if msg.content.lower() == "on":
        print("Working.")
        await ctx.send("Send the channel ID.")
        msg = await bot.wait_for('message', check=lambda message: message.author == ctx.author)
        editedMessageChannel = msg.content
        ctx.send("Channel is set.")

1 个答案:

答案 0 :(得分:0)

我在@Kelo的帮助下发现了问题。多亏了他/她,我才发现自己忘了自我。