与标题相同。我试图让我的机器人发送公告,而不必使用“”来捕获整个句子。 What the hell do you mean?
这是我的代码:
@bot.command(pass_context=True)
@discord.ext.commands.has_permissions(administrator=True)
async def announce(ctx, message : str):
if message == None:
return
else:
embed = discord.Embed(title='yBot | ANNOUNCEMENT', description='', color= 0xFF0000)
embed.add_field(name="ANNOUNCEMENT: ", value="{}".format(message))
embed.set_footer(text="© 2020 - Powered by yanuu ;k#2137")
await ctx.send("||@everyone||")
await ctx.send(embed=embed)
答案 0 :(得分:0)