↩️
Follow-up
base.followupBase SetMessagesSends an additional message under the same slash command. Discord only allows one initial reply per spell — use Reply for the first message, then Follow-up for every message after.
When to use this
- →Always put a Reply piece first — Follow-up cannot be the only message piece on a spell
- →Chain multiple Follow-up pieces to send three or more messages
- →Check "only they can see it" for private follow-ups
On the canvas
This is what Follow-up looks like when you place it on your flow. Each field below is something you configure in the inspector panel.
↩️Messages
Follow-up
base.followupcontentrequired
e.g. "Here are your stats…"
ephemeral
boolean…
Config fields
| Field | Type | Req | What it does |
|---|---|---|---|
contente.g. "Here are your stats…" | textarea | yes | What to say 💬 |
ephemeral | boolean | — | Only they can see it 🤫 |
Output ports
outputMoves to the next piece after the follow-up goes out
📐
In TypeScript, this would be…
Not something you need to write — just a look at what Kitcord does for you.
TypeScript
// Discord only allows one initial Reply on a Spell.
// Use Follow-up to send additional messages under the same slash command:
await interaction.followUp({ content: "Here are your stats…", ephemeral: false });More Messages pieces