NARRATIVE
Multiple choice
Shows a prompt to the player with a list of response buttons. Each response opens its own branch in the graph.
Use cases
NPC dialogue forks, quest acceptance prompts, shop menus, dilemmas, player-driven narrative.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| Prompt | — | No | The question shown above the response buttons. |
| Responses | — | No | List of response labels. Each one becomes an output handle. |
→ In-game result
{
"action": "Choice",
"prompt": "...",
"responses": "..."
} In-game result
The chain pauses, a choice window opens on the player's client, and continues through the handle matching the player's pick (or Default on cancel).