Home > Net >  Send reply which is not visible to others in discord.py
Send reply which is not visible to others in discord.py

Time:12-09

So i want something like this enter image description here

But when i try to do ctx.reply("replied") it is seen by everyone how to do it like the above image?

CodePudding user response:

You can send ephemeral messages only as response to interaction (slash command or component like button or select). If you want to create a slash commands you need to use discord.py forks or extension for it:

Or new APIs for python:

  • Related