Need Outfit Changing Help!

my character is going to the pool, so I made an outfit game so they could pick their swimsuit. now I want to add a towel on top of their bathing suit or make another outfit with a towel. wow can I do that?? I want them to change into the suit they choose later too… ugh help!!

3 Likes

@CHAR changes outfit into (outfit name) no parenthesis

i was reading that! I’m still a bit confused on how I would use the code. do you know how ? would you mind helping me if you did? i would love to give you credit for it aswell :slight_smile:

how when they choose their own outfit?

huh?

Hi!
I think you should use gains to this! After changing into the bathsuit, write for example:
gain bathsuit_1

Copy the original bathsuit outfit, and add a towel to that.
If you want the character to change back into just the bathsuit, just use the gains and if/elif/else.

Example:
NARR
Choose an outfit!

choice
“First one” {
@CHARACTER changes sinto BATHSUIT_1
gain bathsuit_1

NARR
Add a towel

@CHARACTER changes into BATHSUIT_1_TOWEL
} “Second one” {
@CHARACTER changes sinto BATHSUIT_2
gain bathsuit_2

NARR
Add a towel.

@CHARACTER changes into BATHSUIT_2_TOWEL
} “Third one” {
@CHARACTER changes sinto BATHSUIT_3
gain bathsuit_3

NARR
Add a towel.

@CHARACTER changes into BATHSUIT_3_TOWEL
}

NARR
Remove towel.

if (bathsuit_1) {
@CHARACTER changes into BATHSUIT_1
} elif (bathsuit_2) {
@CHARACTER changes into BATHSUIT_2
} else {
@CHARACTER changes into BATHSUIT_3
}

etc.

I hope this helps!^^
Edit: typo.

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