我正在尝试获得一个机器人,该机器人将重复用户输入的内容,并重复用户指定的次数。
我遇到的问题是,如果用户键入:!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)