-
Is there a way to get all friends, i tried |
Beta Was this translation helpful? Give feedback.
Answered by
d-a-n-o-h
Jun 16, 2023
Replies: 1 comment
-
This works for me: client = discord.Client(self_bot=True)
@client.event
async def on_message(message: discord.Message):
if message.author == client.user and message.content.startswith("!f"):
print(client.friends) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
GZMOSV
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
client.friends
?This works for me: