discord.py 通过id获取成员对象
discord.py get member object by id
我想用我的 discord 机器人做一些事情,它可以通过他们的 ID 获取成员,所以如果我有一个示例 ID 1234,我会做类似的事情:
user = # where the way to get the user would be
# then...
userid = user.id # same atts and funcs like in message.author
我正在使用客户端:
import discord
client = discord.Client()
您正在寻找 user = client.get_member(user.id)
。
我想用我的 discord 机器人做一些事情,它可以通过他们的 ID 获取成员,所以如果我有一个示例 ID 1234,我会做类似的事情:
user = # where the way to get the user would be
# then...
userid = user.id # same atts and funcs like in message.author
我正在使用客户端:
import discord
client = discord.Client()
您正在寻找 user = client.get_member(user.id)
。