我尝试将我的自定义表情符号作为这样的页脚:
embed.set_footer(text=f"<:Bloxxer:793683622238224384> Bloxxer")
它不起作用并且与页脚中的字符串完全一样。是否可以在 discord.py 的页脚中设置自定义表情符号?
答案 0 :(得分:0)
我不认为 discord.py 允许将表情符号放在嵌入的页脚中,但如果您想将一个放在字段中,请参阅下面的代码。
@client.command()
async def embed(ctx):
emoji = client.get_emoji(id=EMOJI ID)
embed = discord.Embed()
channel = ctx.message.channel.id
embed.add_field(name='emoji', value=f"{emoji} Bloxxer")
await ctx.send(embed = embed)
答案 1 :(得分:0)
您可以使用 windows 表情符号,您将没有服务器的表情符号,但可以使用不和谐字体中的 ✅ 或 ? 之类的东西。要打开 windows 表情符号,您可以使用 windows + dot。