async def on_message(self, message): # we do not want the bot to reply to itself if message.author.id == self.user.id: return if message.content.startswith('!hello'): await message.reply('Hello!', mention_author=True) code example
Example: python discord mention user
await message.channel.send(message.author.mention)