From 6d2610ebcd25ce12a2c9e22717a20d7772f991f0 Mon Sep 17 00:00:00 2001 From: Nathanael Sensfelder Date: Wed, 19 Jan 2022 19:55:42 +0100 Subject: ... --- content/wyrd_v1/instruction_result/_index.md | 35 ++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) (limited to 'content/wyrd_v1/instruction_result') diff --git a/content/wyrd_v1/instruction_result/_index.md b/content/wyrd_v1/instruction_result/_index.md index b77b496..ac585fc 100644 --- a/content/wyrd_v1/instruction_result/_index.md +++ b/content/wyrd_v1/instruction_result/_index.md @@ -3,3 +3,38 @@ menuTitle: title: Instruction Result weight: 5 --- +Following the execution of an ``, the `` will see its +`last_instruction_effect` be set to one of the following values: + +* `(MUST_CONTINUE)`, indicating that the next `` should be + executed. +* `(MUST_END)`, indicating that the story has ended. No further ``s + should be executed. +* `(MUST_PROMPT_COMMAND )`, + indicating that an input should be given before executing further + ``s. In this case, the execution should be done only after the + user has seen `msg` and input a command (space separated list of strings) + totaling between `min` and `max` characters (spaces included). +* `(MUST_PROMPT_FLOAT ))`, + indicating that an input should be given before executing further + ``s. In this case, the execution should be done only after the + user has seen `msg` and input a float value included between `min` and `max`. +* `(MUST_PROMPT_INTEGER ))`, + indicating that an input should be given before executing further + ``s. In this case, the execution should be done only after the + user has seen `msg` and input an integer value included between `min` and + `max`. +* `(MUST_PROMPT_STRING )` + indicating that an input should be given before executing further + ``s. In this case, the execution should be done only after the + user has seen `msg` and input a string totaling between `min` and `max` + characters. +* `(MUST_PROMPT_CHOICE)` + indicating that an input should be given before executing further + ``s. In this case, the execution should be done only after the + user has chosen an option between the ones listed in the ``'s + `available_options`. +* `(MUST_DISPLAY )`, indicating that `msg` should be displayed + before further ``s are executed. +* `(MUST_DISPLAY_ERROR )`, indicating that `msg` should be + displayed as an error message before further ``s are executed. -- cgit v1.2.3-70-g09d2