Help with remember choice?!

Ok, I’m still trying to understand think when you have one choice in episode 1 and then you want to remember that choice the reader pickt in episode 2

I have a dressing game in episode 1 and want to remember what the reader pickt to dress like in episode 2 help here is my dressing game

label choosing_outfit2

    YOU (think)
(Hm...what should I be? )

choice
“devil”{

@YOU is dustoff_loop
@pause for a beat
@YOU changes into devil

}
“sexy teacher”{

@YOU is dustoff_loop
@pause for a beat
@YOU changes into sexy teacher

}
“agent”{

@YOU is dustoff_loop
@pause for a beat
@YOU changes into agent

}

@pause for a beat

    YOU (talk_think)
(Should I wear this?)

choice
“YAS”{
YOU (talk_exhausted)
Bed time

}
“Nah uh”{

goto choosing_outfit2

}

no you have to add gains

Outfits are automatically remembered, so whatever the reader chooses will be on the character in the next episode until you change the clothes again.

But, if you need to remember the outfit because you might do a flashback, you need to name your choice and work with if/elif/else. See this thread:

Check out this: HOW TO: Remember Past Choices (if/elif/else)

Adding gains is a bad idea when it comes to a dressing game btw (you can still use them but it’s way more work than a choice name and option method because you need to give them individual yes or no’s when it comes to confirming your choice).

Here’s an example of what you can write:

And then to remember it:

if (dress_pretty is “devil”) {

NARR
Scene for remembering to wear the devil outfit goes here.

} elif (dress_pretty is “sexy teacher”) {

NARR
Scene for remembering to wear the sexy teacher outfit goes here.

} else {

NARR
Scene for remembering to wear the agent outfit goes here.

}

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