如何找到机器人所有者

时间:2019-02-12 02:32:23

标签: python python-3.x discord discord.py

我正在尝试创建一个命令,您可以在其中说出(前缀)所有者<@bot> According to discord.py Docs about AppInfo,,如果我没错,我必须使用discord.AppInfo.owner来找到机器人的所有者。但是我收到错误消息discord.ext.commands.errors.BadArgument: Converting to "AppInfo" failed.!我不确定我哪里出错了

@client.command(pass_context=True)
async def owner(ctx,app:discord.AppInfo):
    if app.bot==True:
        try:
            await client.say(f"Bot owner is: {app.owner}")
        except Exception as e:
            await client.say(e)
    else:
        await client.say("Not a bot")

1 个答案:

答案 0 :(得分:1)

不可能获得有关其他机器人的“私人”信息。