79242853

Date: 2024-12-02 02:47:35
Score: 1.5
Natty:
Report link

Have you tried doing it in just one file? Example:

import discord
from discord.ext import commands

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

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


@bot.event
async def on_ready():
    print(f"My Bot is Online !")

@bot.command()
async def coucou(ctx):
    await ctx.send("You say coucou, i say coucou !")

bot.run("TOKEN")
Reasons:
  • Whitelisted phrase (-1): Have you tried
  • Has code block (-0.5):
  • Ends in question mark (2):
  • Low reputation (1):
Posted by: Jay