|
|
@@ -265,5 +265,26 @@ Good news is we can easily avoid them by using Markdown links:
|
|
|
This is how we can go from one file to another. Writing anything *after*
|
|
|
is kinda useless, since it can't be viewed anyway.
|
|
|
```
|
|
|
+### 3.2.5 Choice chunk
|
|
|
+With bullet points and link we can give player a choice:
|
|
|
+
|
|
|
+```markdown
|
|
|
+1 @ALICE__
|
|
|
+2 Should I go with Bob or Chloe?
|
|
|
+3
|
|
|
+4 + [I will go with Bob](bob_route.vnrs)
|
|
|
+5 - [(TODO) I will go with Chloe](chloe_route.vnrs)
|
|
|
+6 * [Go alone](secret_route.vnrs){social<0}
|
|
|
+```
|
|
|
+
|
|
|
+In Markdown, it doesn't matter which sign you use (+ / * / +), but
|
|
|
+in Vinora Screenplay they have it's own functionality:
|
|
|
+
|
|
|
+'+' is for ordinary choices
|
|
|
+'-' is for blocked choices. They are viewable but can't be chosen. It's
|
|
|
+useful for planning future chapters.
|
|
|
+'\*' is for hidden choices. They are only viewable if the condition in
|
|
|
+{} brackets is true.
|
|
|
+
|
|
|
|
|
|
## 3.3 Inline parser
|