79432818

Date: 2025-02-12 11:09:34
Score: 3.5
Natty:
Report link

I still don't get any results. I also tried with this code:

import discord
from discord.ext import commands

intents = discord.Intents.all()
intents.message_content = True

bot = commands.Bot(command_prefix='!', intents=intents)

@bot.event
async def on_ready():
    print(f'Logged in as {bot.user} (ID: {bot.user.id})')
    print('------')

@bot.command
async def hi(ctx):
    print('asdadsa')
    await ctx.send('#your response here')

bot.run('MY_TOKEN')

But still, when I type !hi command in the Discord chat, the bot doesn't respond at all. any ideas?

Reasons:
  • Blacklisted phrase (1): any ideas
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Self-answer (0.5):
  • Low reputation (1):
Posted by: andresca