#Download Stickers
1 messages · Page 1 of 1 (latest)
Hey! Once your issue is solved, press the button below to close this thread!
Download Stickers
the lib doesnt really have many helpers around stickers
here. this should give you more or less what you need
@listen()
async def on_message_create(event: MessageCreate):
message: Message = event.message
if message.sticker_items:
base = "https://media.discordapp.net/stickers/{}.webp"
for sticker_item in message.sticker_items:
url = base.format(sticker_item.id)
print(url)
Thanks!