How to get all the guilds a user is the owner of? #6781
Unanswered
NyanFroggy
asked this question in
Q&A
Replies: 1 comment 1 reply
-
This does not exist, no. for guild in bot.guilds:
if guild.owner_id == <your ID here>:
print(f"I own {guild.name}") This is of course a very barebones and pseudocode concept. But the idea is there. |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I want to get the list of servers I am the owner of.
Is there a function like this-
guilds=client.get_guild(id).owner.ownedguilds()
Beta Was this translation helpful? Give feedback.
All reactions