#Is there a way to ping/show an ephmeral message to numerous people after like a set time

19 messages · Page 1 of 1 (latest)

fathom escarp
#

Title ^

wicked jungleBOT
#
  • What's your exact discord.js npm list discord.js and node node -v version?
  • Not a discord.js issue? Check out #1081585952654360687.
  • Consider reading #how-to-get-help to improve your question!
  • Explain what exactly your issue is.
  • Post the full error stack trace, not just the top part!
  • Show your code!
  • Issue solved? Press the button!
sterile flare
#

Afaik ephemerals are only accessible only when an interaction happens

#

You can't just show it out of nowhere

fathom escarp
#

Yeah i figure

#

figured

#

well, alright. Thanks

sterile flare
#

good luck

fathom escarp
sterile flare
mellow spear
fathom escarp
mellow spear
#

editReply edits the original reply whether it be ephemeral or not

#

If you want to edit a followup js const response = await interaction.followUp({ ephemeral: true, ... }); response.edit(...);

placid mason
#

ephemeral messages must be edited through the interaction webhook
<Interaction>.editReply() is the correct method
the message option can be specified if attempting to edit a follow up

#

followUp resolves in the Message sent, and <Message>.edit() will error when attempting to edit an ephemeral message

mellow spear
#

Ah yeah, forgot it was a Message lol

fathom escarp