18 lines
316 B
Plaintext
18 lines
316 B
Plaintext
~ start
|
|
set Global.dialogue_wait = true
|
|
Would you like to add ingredients to the pot?
|
|
- Yes => yes
|
|
- No => no
|
|
set Global.dialogue_wait = false
|
|
=> END
|
|
|
|
~ yes
|
|
What would you like to add to the pot?
|
|
-
|
|
set Global.dialogue_wait = false
|
|
=> END
|
|
|
|
~ no
|
|
I'm just getting take out baby!
|
|
set Global.dialogue_wait = false
|
|
=> END |