如何让你的机器人从聊天中说话?

How to make your bot say things from chat?

我想通过我的不和谐来说话,但我不确定如何编写这样的东西;这是我试过的。

from discord.ext.commands import Bot

Mike = Bot(command_prefix=",")

@Mike.command()
    async def Msay(*args, message):
        Mike.delete_message(message)
        return await Mike.say(args)

Mike.run(secrets.BOT_TOKEN)

我希望能够在我的 discord 聊天中输入内容

我: ,Msay hello world

我的消息已删除

Mike-Bot:你好世界

import asyncio
import discord
from discord.ext.commands import Bot

Mike = Bot(',')

@Mike.command(pass_context = True)
async def Msay(ctx, *args):
    mesg = ' '.join(args)
    await Mike.delete_message(ctx.message)
    return await Mike.say(mesg)

Mike.run(Token)