@提及随机用户 discord.py

时间:2021-07-03 03:43:38

标签: python discord discord.py

大家好,所以我一直在尝试编写一个代码,其中不和谐机器人提到我服务器中的随机用户,我已经编写了代码,但机器人一直在提及自己

from random import choice

@client.command(pass_context=True)
async def best(ctx):
    user = choice(ctx.message.channel.guild.members)
    await ctx.send(f'{user.mention} is the best player')

1 个答案:

答案 0 :(得分:1)

你必须用 random.choice 代替choice

user = random.choice(ctx.message.channel.guild.members)

random.choice 将选择一个随机用户。选择什么都不做