Discord.py 需要超过 1 个 Int
Discord.py More than 1 Int needed
我正在尝试为我的 Discord Bot 创建一个垃圾邮件命令,但我需要超过 1 个 int,所以我无法设置标题描述和垃圾邮件数量...如果你能提供帮助就好了
@bot.command()
async def spam(ctx, amount: int, title: int, *, message):
错误:
参数“title”转换为“int”失败。
问题是,你将标题设置为整数(只接受数字),如果你不想它是任何东西,就这样做
@bot.command()
async def spam(ctx, amount: int, title: str, *, message):
您可能需要嵌入的标题,如果您不使用嵌入,请执行此操作
@bot.command()
async def spam(ctx, amount: int, *, message):
您的代码正在尝试将标题从字符串转换为整数(这会引发错误)。
我正在尝试为我的 Discord Bot 创建一个垃圾邮件命令,但我需要超过 1 个 int,所以我无法设置标题描述和垃圾邮件数量...如果你能提供帮助就好了
@bot.command()
async def spam(ctx, amount: int, title: int, *, message):
错误: 参数“title”转换为“int”失败。
问题是,你将标题设置为整数(只接受数字),如果你不想它是任何东西,就这样做
@bot.command()
async def spam(ctx, amount: int, title: str, *, message):
您可能需要嵌入的标题,如果您不使用嵌入,请执行此操作
@bot.command()
async def spam(ctx, amount: int, *, message):
您的代码正在尝试将标题从字符串转换为整数(这会引发错误)。