Вам нужно использовать класс Bot
из discord.ext.commands
from discord.ext import commands
client = commands.Bot(command_prefix='x!')
@client.event
async def on_ready():
print("Successfully booted the bot up!")
@client.event
async def on_message(message):
if message.content.find("minecraft") != -1:
await message.channel.send('@Kerina#4436 ajde majnkraft jebemlite')
await client.process_commands(message)
@client.command()
async def nwordpass(ctx):
await ctx.send('Proof of you having the nword pass: https://lh3.googleusercontent.com/1HBSAiHdRdM1UVJJZlOUnMkihkiMOPPYSMTjI5WzHuvDVIBztueZR83rkUiHwIJvrfU')
Я также добавил строку await client.process_commands(message)
, чтобы ваши команды обрабатывались.