#๐ Not Working
56 messages ยท Page 1 of 1 (latest)
@peak basin
Remember to:
- Ask your Python question, not if you can ask or if there's an expert who can help.
- Show a code sample as text (rather than a screenshot) and the error message, if you've got one.
- Explain what you expect to happen and what actually happens.
:warning: Do not pip install anything that isn't related to your question, especially if asked to over DMs.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
and what happens if you hit enter?
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
5. Do not provide or request help on projects that may violate terms of service, or that may be deemed inappropriate, malicious, or illegal.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
The rules and guidelines that apply to this community can be found on our rules page. We expect all members of the community to have read and understood these.
Intents are a feature of Discord that tells the gateway exactly which events to send your bot. Various features of discord.py rely on having particular intents enabled, further detailed in its documentation. Since discord.py v2.0.0, it has become mandatory for developers to explicitly define the values of these intents in their code.
There are standard and privileged intents. To use privileged intents like Presences, Server Members, and Message Content, you have to first enable them in the Discord Developer Portal. In there, go to the Bot page of your application, scroll down to the Privileged Gateway Intents section, and enable the privileged intents that you need. Standard intents can be used without any changes in the developer portal.
Afterwards in your code, you need to set the intents you want to connect with in the bot's constructor using the intents keyword argument, like this:
from discord import Intents
from discord.ext import commands
# Enable all standard intents and message content
# (prefix commands generally require message content)
intents = Intents.default()
intents.message_content = True
bot = commands.Bot(command_prefix="!", intents=intents)
For more info about using intents, see discord.py's related guide, and for general information about them, see the Discord developer documentation on intents.
One message removed from a suspended account.
1. Follow the Python Discord Code of Conduct.
One message removed from a suspended account.
One message removed from a suspended account.
2. Follow the Discord Community Guidelines and Terms of Service.
One message removed from a suspended account.
One message removed from a suspended account.
4. Use English to the best of your ability. Be polite if someone speaks English imperfectly.
Go to #rules to read them all
One message removed from a suspended account.
Consider learning Python properly before taking any AI code slop
!resources have plenty of beginner level materials
The Resources page on our website contains a list of hand-selected learning resources that we regularly recommend to both beginners and experts.
One message removed from a suspended account.
One message removed from a suspended account.
โ๏ธ Resources page is linked here in blue. Click it
One message removed from a suspended account.
One message removed from a suspended account.
np ๐
One message removed from a suspended account.
sure but we won't help if its illegal or malicious.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
One message removed from a suspended account.
This help channel has been closed. Feel free to create a new post in #1035199133436354600. To maximize your chances of getting a response, check out this guide on asking good questions.