I am trying to make a bot that welcomes people to the server that it’s in and all of the code works except for the on_member_join event because it utilizes the new intents. I googled on how to work with the intents and tried everything but it still isn’t working.
intents = discord.Intents.default() intents.members = True client = commands.Bot(command_prefix=',', intents = intents)
How do I fix this?
Answers:
Thank you for visiting the Q&A section on Magenaut. Please note that all the answers may not help you solve the issue immediately. So please treat them as advisements. If you found the post helpful (or not), leave a comment & I’ll get back to you as soon as possible.
Method 1
intents = discord.Intents.default()
intents.members = True
client = commands.Bot(command_prefix=',', intents=intents)
You also have to enable privileged intents in the developer portal
Method 2
This code will help.
intents = discord.Intents().all() client = commands.Bot(command_prefix=',', intents=intents)
Method 3
It may be you don’t have enabled the permissions.
checkout https://discord.com/developers/applications/
Enable The member’s intent permission
- Privileged Gateway Intents
- SERVER MEMBERS INTENT
All methods was sourced from stackoverflow.com or stackexchange.com, is licensed under cc by-sa 2.5, cc by-sa 3.0 and cc by-sa 4.0