为了账号安全,请及时绑定邮箱和手机立即绑定

AttributeError: 'Member' 对象没有属性 'public_flags'

AttributeError: 'Member' 对象没有属性 'public_flags'

海绵宝宝撒 2022-12-20 15:26:08
@commands.command()async def profile(self, ctx, *, user: discord.Member = None):    """Profile"""    if user == None:      user = ctx.author    server = ctx.guild    #error in this    print(ctx.author.public_flags)    #    ..........我想知道用户示例的公共标志:Hypesquad balance
查看完整描述

2 回答

?
MMTTMM

TA贡献1869条经验 获得超4个赞

使用discord.User.profile

@commands.command()

async def profile(self, ctx, *, user: discord.Member = None):

    """Profile"""

    if user == None:

      user = ctx.author

    server = ctx.guild

    # this for example prints if the user has discord nitro

    print(await ctx.author.profile().nitro)

配置文件包含的信息在这里


查看完整回答
反对 回复 2022-12-20
?
catspeake

TA贡献1111条经验 获得超0个赞

我找到了答案。从 github 安装最新的 discord.py


@commands.command()

async def profile(self, ctx, *, user: discord.Member = None):

    """Profile"""

    if user == None:

      user = ctx.author

    server = ctx.guild

    print(ctx.author.public_flags.all())

    ..........


查看完整回答
反对 回复 2022-12-20
  • 2 回答
  • 0 关注
  • 76 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信