Reputation: 1
I have a Discord-Bot (I’m developing with Discord.py) with a report command and the user should pass the ID of the corresponding message (I will don't know in which channel). How can I mention the message with this ID?
I tried <@ID>, but it mentions an unknown user and <#ID>, but it mentions a deleted channel.
Upvotes: 0
Views: 3105
Reputation: 1
I'm not sure if you can mention a message but you can give a link which can be clicked and will send you to the message.
The format of the link should be:
https://discord.com/channels/<GUILD-ID>/<CHANNEL-ID>/<MESSAGE-ID>
Upvotes: 0