I wrote a branch choice for my story. Those chooses decides what the girl will dress next time.
So, when writing the time she’ll wear the dresses, should I write the next actions in {} too? Or should I write @CHARACTER changes into outit} and then write the other actions too?
If you need help check out this thread we would be more then happy to help:)
Hello and welcome, we are the Episode Bomb Family. We will not explode if you are nice! Now you you are probably wondering what is Episode Bomb…Epsiode bomb is a great big family where we can litterly help you out with anything your heart desires! We have two presidents @NattyGomez and @Aerial_author .
We also have our own theme song. (I suggest you listen!)
[Jonas Blue - Rise ft. Jack & Jack]
What we can provide…
Support if you ever need someone to talk to, we are al…
1 Like
Apes
August 10, 2018, 6:02pm
3
@ahundredandtwo
here’s the code for the dressing game and if/elif/else
more about remembering choices here:
Please visit my website for more templates and guides!
https://www.dara-amarie.com/
FIRST AND FOREMOST, to remember choices, you will need to use the if/elif/else code, which looks like this:
if (label1) {
} elif (label2) {
} else {
}
if is always first, elif is always in the middle, and else should always be the last one by itself
if you have 2 options, you only need to use if and else
if (label) {
} else {
}
if you have 3 options, use if then elif then else
if (label1) {
} elif (lab…
omg that is so cool! I am pretty sure I will write there a lot in future
1 Like