如何使Discord机器人输出用户输入的所有内容,而不仅仅是第一个输入?

时间:2019-01-27 03:23:35

标签: python discord repeat discord.py python-3.7

我正在尝试获得一个机器人,该机器人将重复用户输入的内容,并重复用户指定的次数。
我遇到的问题是,如果用户键入:!repeat 5 x y,则漫游器只会重复x 5次,而不会重复x y 5次。

这是我要运行的代码:

@bot.command()
async def repeat(times: int, content="Repeating..."):
    for i in range(times):
        if times > 10:
            await bot.say("Cannot spam more than 10 messages at a time.")
            return
        else:
            await bot.say(content)

1 个答案:

答案 0 :(得分:0)

您可以使用 keyword-only argument syntax并执行类似的操作

FROM mysql:8