Dressing Games!

I’m new to dressing games, and I just have a question about them.

I did the simple dressing game by Joseph Evans:

And, I was wondering if the outfit the reader picked stay in the next episode.

-Thank you. :two_hearts:

4 Likes

It will! You simply have to do:

if “outfit 1” {

Write your script here…
}

elif “outfit 2” {

Write your script here…
}

else {
}

1 Like

Yes, I already did it in my script!

Script

I was wondering because I wasn’t sure, thank you!!

1 Like

No problem! I’m so happy to help. Just make sure to use it in the next episode. :slight_smile:

1 Like

Wait, wait, use what in the next Episode? Will I have to make them pick their outfit again?

SORRY, I don’t knoww. :joy:

1 Like

It’s totally fine! If you want the character to wear the same outfit they chose in a next episode, use the if/elif/else coding. :blush:

1 Like

What’s that?

1 Like

That is, what I wrote before.

if “outfit 1” {

Write your script here…
}

elif “outfit 2” {

Write your script here…
}

else {
}

1 Like

Ohh, okay! What if I have three outfits?

1 Like

You’ll simply do:
if “outfit 1” {

Write your script here…
}

elif “outfit 2” {

Write your script here…
}

elif “outfit 3” {

Write your script here…

}

else {
}

1 Like

Btw sorry that I’m replying so late everytime, the forums from a mobile suck :pensive:

1 Like

Thank you so much!

And for the “write you script here” do I just put:

Ex:

MERRYLYN changes into MERRYLYN_everyday

Like that?

Oh, and on the start of the next Episode, do I just put it right at the start?

Sorryyy, last questions. :joy:

(Oh, its fine. I don’t mind.)

1 Like

You can ask me as many questions as you want, as I said, I’m so happy to help!

Yes, for the “write your script here” you can put that, and continue with your episode.

And yep, you can put it in the start of an episode.

1 Like

Okay, thank you for the help!

I understand now. :sparkling_heart:

WAIT SORRY, I JUST WANNA PUT AN EXAMPLE REAL QUICK:

Soo, like this for the start?

EXT.coffee

if “outfit 1” {

MERRYLYN changes into MERRYLYN_everyday1
}

elif “outfit 2” {

MERRYLYN changes into MERRYLYN_everyday2
}

elif “outfit 3” {

MERRYLYN changes into MERRYLYN_everyday3

}

else {
}

&MERRYLYN walks to spot (whatever) and MERRYLYN is walk_neutral

@transition fade in black 2

Like that?

1 Like

You’re so funny :joy:

Perfection!

1 Like

Okayy, thank you! :joy: :sparkling_heart:

1 Like

:relaxed:

1 Like

You can also use the “gain” command

Like:

choice

“Outfit 1” {
gain outfit_1

} “outfit 2”{
gain outfit_2

} “outfit 3”{
gain outfit_3

}

And when you need to have the same outfit in the other episodes you just have to put what they gained into brackets
Like this

if (outfit_1) {
CHAR changes into outfit_1

} elif (outfit_2){
CHAR changes into outfit_2

} elif (outfit_3){
CHAR changes into outfit_3

}

2 Likes

Thank you!! :sparkling_heart:

2 Likes