不和谐机器人设置嵌入消息颜色

时间:2021-01-09 12:57:44

标签: discord discord.py embed discord.py-rewrite

所以我写了这个发送嵌入消息的代码,如果你写 000000 它会使嵌入变黑,但如果你写 ff0000 为红色,它不会工作,你必须写 0xff0000 让它工作,有没有办法让 ff0000 在没有 0x 的情况下工作?这是我的代码:

async def embed(ctx, *, content: str):
    title, description, color = content.split('|')
    embed = discord.Embed(title=title, description=description, color=int(color, 0))
    await ctx.send(embed=embed)

任何帮助将不胜感激。

2 个答案:

答案 0 :(得分:0)

您可以简单地将颜色 (public void RemoveCount(object sender, EventArgs e) { var cs = Database.Database.Connector(); using var con = new NpgsqlConnection(cs); con.Open(); var sql = "TRUNCATE TABLE counter "; using var cmd = new NpgsqlCommand(sql, con); cmd.Prepare(); cmd.ExecuteNonQuery(); con.Close(); } ) 转换为基数为 16 的整数

ff0000

答案 1 :(得分:-1)

您可以使用 this 链接来选择您的颜色(复制小数点)。在嵌入中只需添加 color=(decimalnumberhere)