how to get message mention on reply #6572
-
i have been searching in documentation a way to get the mention id on reply i mean the event when a user reply to another message using the "reply button" i used this code
but it seems to only works when you reply to bot |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments
-
You will be able to use |
Beta Was this translation helpful? Give feedback.
-
For anyone looking for the code here's it
i'm closing the discussion thanks @lgaan |
Beta Was this translation helpful? Give feedback.
You will be able to use
discord.Message.reference
in order to get theMessageReference
object. This represents the data of the reply. From here you can either useMessageReference.cached_message
if the message is in cache, or fetch the message usingMessageReference.message_id
. This allows you to usemessage.author.id
as normal.