| summaryrefslogtreecommitdiff |
diff options
| author | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-12-28 02:59:31 +0100 |
|---|---|---|
| committer | Nathanael Sensfelder <SpamShield0@MultiAgentSystems.org> | 2020-12-28 02:59:31 +0100 |
| commit | 3b820907588131712bd2991dc751329530df8a6a (patch) | |
| tree | 315563874910ff1325f36341daaf1b4faded5fb7 /content/wyrd_v1/instructions/_index.md | |
| parent | b5b30786abdb77dc0c1f9ed1be6d9c594b398b1a (diff) | |
Some "rich text" -> "text"; new sequence stuff.
Diffstat (limited to 'content/wyrd_v1/instructions/_index.md')
| -rw-r--r-- | content/wyrd_v1/instructions/_index.md | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/content/wyrd_v1/instructions/_index.md b/content/wyrd_v1/instructions/_index.md index cda4fec..500f884 100644 --- a/content/wyrd_v1/instructions/_index.md +++ b/content/wyrd_v1/instructions/_index.md @@ -8,31 +8,31 @@ the Program Counter by 1. ## ADD CHOICE -{{< fatecode >}}(add_choice [RICH TEXT]){{< /fatecode >}} +{{< fatecode >}}(add_choice [TEXT]){{< /fatecode >}} Adds a new option for the next `resolve_choices` instruction. The new option -presents the player with `[RICH TEXT]`. +presents the player with `[TEXT]`. ## INTEGER PROMPT -{{< fatecode >}}(prompt_integer [INT REFERENCE] [MIN = INT] [MAX = INT] [RICH TEXT]){{< /fatecode >}} +{{< fatecode >}}(prompt_integer [INT REFERENCE] [MIN = INT] [MAX = INT] [TEXT]){{< /fatecode >}} Prompts the user for an integer between `[MIN]` and `[MAX]` by displaying the -message `[RICH TEXT]`. The result is stored in `[INT REFERENCE]`. +message `[TEXT]`. The result is stored in `[INT REFERENCE]`. ## STRING PROMPT -{{< fatecode >}}(prompt_string [STRING REFERENCE] [MIN = INT] [MAX = INT] [RICH TEXT]){{< /fatecode >}} +{{< fatecode >}}(prompt_string [STRING REFERENCE] [MIN = INT] [MAX = INT] [TEXT]){{< /fatecode >}} Prompts the user for a string of size between `[MIN]` and `[MAX]` by displaying -the message `[RICH TEXT]`. The result is stored in `[STRING REFERENCE]`. +the message `[TEXT]`. The result is stored in `[STRING REFERENCE]`. ## ASSERT -{{< fatecode >}}(assert [BOOL] [RICH TEXT]){{< /fatecode >}} -If `[BOOL]` isn't _true_, raise a runtime error containing `[RICH TEXT]`. +{{< fatecode >}}(assert [BOOL] [TEXT]){{< /fatecode >}} +If `[BOOL]` isn't _true_, raise a runtime error containing `[TEXT]`. ## DISPLAY -{{< fatecode >}}(display [RICH TEXT]){{< /fatecode >}} -Displays `[RICH TEXT]` to the player. +{{< fatecode >}}(display [TEXT]){{< /fatecode >}} +Displays `[TEXT]` to the player. ## END |


