import discord from discord.ext import commands bot = commands.Bot(command_prefix = "!", intents=discord.Intents.all()) #Bot aktif olduğunda konsola yazı yazdırır @bot.event async def on_ready(): print(f'{bot.user} aktif') #!sa yazdığında as cevabını verdirecek kod prefix ünlem olduğu için !sa yazmak gerekiyor ufak bi kodla kelimeyi bölüp prefixsiz yazdırabiliriz de o son kısım herhalde @bot.command(name='sa') async def hello(ctx): await ctx.send('as') bot.run('MTI0OTQ1NTczNjIzNzQ1NzQ1MA.GHXpCI.pb5z6mm1zW5ScX4PUyYd-k09tUuwDMSJiP9p2U')