所以我做了一个命令,你需要猜测冒名顶替者是谁。 但机器人似乎并没有选择用户的反应,即他们选择谁是冒名顶替者..
代码-
@commands.command(aliases=['gti'])
async def impostor(self, ctx):
def check(message):
return message.author == ctx.author and message.channel == ctx.channel
impostor_list = ['red', 'yellow', 'white', 'purple', 'pink', 'orange', 'lime', 'green', 'cyan', 'brown', 'blue']
impostor = random.choice(impostor_list)
embed = discord.Embed(title="Guess the impostor!", description="Who is sussy? Write their color in chat within 20s to continue!", color = discord.Color.random())
embed.add_field(name="The people are:", value="```red, yellow, white, purple, pink, orange, lime, green, cyan, blue, brown```")
send_em = await ctx.send(embed=embed)
try:
user_response = await self.client.wait_for("message", timeout=20, check=check)
except asyncio.TimeoutError:
return await ctx.send("You took too long to answer.")
else:
if user_response.content == impostor:
correct_em = discord.Embed(title=f"{user_response} was ejected.", description=f"{user_response} was the Impostor. Well done!", color = discord.Color.random())
return await ctx.send(embed=correct_em)
else:
wrong_em = discord.Embed(title=f"{user_response} was ejected.", description=f"{user_response} was not the Impostor.\nYou lose! {impostor} was the Impostor.")
return await ctx.send(embed=wrong_em)
如果您有解决方案,请回答。 提前致谢。
答案 0 :(得分:1)
else
语句中使用 try-except
:else
只能在 if
或 elif
之后使用,而不是在try-except
。您可以使用 else
代替 finally
,它会在 try
或 except
完成后使用。user_response.content
而不是 user_response
!例如,在嵌入标题中,您可能会收到诸如 HTTPException: 400 Bad Request (error code: 50035): Invalid Form Body In embed.title: Must be 256 or fewer in length.
这是修改后的代码的一部分。
try:
user_response = await self.client.wait_for("message", timeout=20, check=check)
except asyncio.TimeoutError:
return await ctx.send("You took too long to answer.")
# You can use finally, that way it will always be done despite the try-except
# (but in your case, it would only be done after the try
finally:
# most of the time you did user_response without content, which may
# raise an error since it would be over 256 characters in an embed title,
# ergo, don't forget to add .content to them!
if user_response.content == impostor:
correct_em = discord.Embed(title=f"{user_response.content} was ejected.", description=f"{user_response.content} was the Impostor. Well done!", color = discord.Color.random())
return await ctx.send(embed=correct_em)
else:
wrong_em = discord.Embed(title=f"{user_response.content} was ejected.", description=f"{user_response.content} was not the Impostor.\nYou lose! {impostor} was the Impostor.")
return await ctx.send(embed=wrong_em)