*Need help with basic choices*

Just like choice outfit, I need simple choices in which the readers could read all the choices

Choice - Simple {

    AMANDA (think)
What should i do first?

choice
“Decorations”{

    AMANDA (think)
I think i should start with the decorations

@AMANDA exits left

}“Food”{
AMANDA (think)
I think i should start with the food first
@AMANDA exits left

}“Music”{

    AMANDA (talk_apathetic)
Can't say no to the music first

@AMANDA exits left
NARRATOR
It’s good to keep a few lines of dialogue, so it feels unique.

    NARRATOR
Change "NARRATOR" in all of these to the characters you have talking.

    NARRATOR
You can also add as much dialogue as you want!

}

    NARRATOR
And on this line of dialogue, all of the choice merge to the main story.

    NARRATOR
So make sure your story makes sense here, with all the options.

#}

Like if i want my MC work on all three and show the readers too… how the choice could be pop up or appear again to make a next choice?

I would love to help you but I didn’t get what you need… could you pm me and explain?:sweat_smile:

1 Like

I want the whole choices to reappear even if the reader chooses an option… So that he/she can read the other choices too… I couldn’t understand how to do

I think what you want to do is use labels! So basically your code will be like this:

Summary

label WhatToDo

AMANDA
What should I do?

choice “Decorations”{

NARRATOR
All your Decoration stuff goes here!

goto WhatToDo
} “Food” {

NARRATOR
All your Food stuff goes here!

goto WhatToDo
} “Music” {

NARRATOR
All your Music stuff goes here!

goto WhatToDo

} “I’m done”{

goto ContinueScene
}

label ContinueScene

NARRATOR
The rest of your scene continues here!

You can read about how labels work here: episodesupport(.)zendesk(.)com/hc/en-us/articles/115004056514-Goto-s-Labels-and-Closing-Brackets-

The ‘I’m done’ option is really important because you want to make sure the reader can leave this menu and advance to the next part of the episode.

Hope this helps!

Thank you :blush:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.