#๐ Help
12 messages ยท Page 1 of 1 (latest)
@winter igloo
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.
import discord
from discord.ext import commands
import tracemalloc
tracemalloc.start()
intents = discord.Intents.default()
intents.members = True
bot = commands.Bot(command_prefix='!', intents=intents)
async def load_commands(bot):
for filename in os.listdir('/home/container/commands/'):
if filename.endswith('.py'):
try:
bot.load_extension(f'commands.{filename[:-3]}')
except commands.NoEntryPointError:
print(f"No setup function in {filename}. Not loading as extension.")
@bot.event
async def on_ready():
print(f'{bot.user} olarak giriล yaptฤฑ!')
await load_commands(bot)```
WARNING discord.ext.commands.bot Privileged message content intent is missing, commands may not work as expected
bot.load_extension(f'commands.{filename[:-3]}')
Object allocated at (most recent call last):
File "/home/container/main.py", lineno 17
bot.load_extension(f'commands.{filename[:-3]}')```
load_extension is a coroutine and it needs to be awaited
and for the warning you could enable message_content intent just like you enabled members intent
What should I add or remove?
I just said what you should do
This help channel has been closed and it's no longer possible to send messages here. If your question wasn't answered, 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.