-
Is there any way to currently check for a user's status if you know their member id etc and are on the same server as them? When I say status I am referring to idle/dnd/online/offline, etc. |
Beta Was this translation helpful? Give feedback.
Answered by
dolfies
Nov 26, 2021
Replies: 1 comment 4 replies
-
If you want to get the member/presence of up to 100 specific members, you can do this: import discord
client = discord.Client(guild_subscription_options=GuildSubscriptionOptions.off())
guild = client.get_guild(123)
members = await guild.query_members(user_ids=[1,2,3], presences=True) |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
dolfies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
If you want to get the member/presence of up to 100 specific members, you can do this: