Custom Emoji's And Animated Emoji's Not Working [discord.py-rewrite]
I recently built a simple command to test the format of custom emoji's and animated emoji's Here is what the command was @bot.command() async def say(ctx, *, text): await ctx.send(
Solution 1:
You can use Client.get_emoji
to get the Emoji
object, then use that to build your string
@bot.command()
async def say(ctx, *, text):
ono = bot.get_emoji(521148278079881219)
await ctx.send(f"{ono} You said {text}")
Post a Comment for "Custom Emoji's And Animated Emoji's Not Working [discord.py-rewrite]"