Help please. (script)

l

take out (Soft and Cozy) next to the choice. on line 6247

I recommend you to use Dara’s template for a simple choice:

Yours is kinda mixed up instead of one choice with different options you created a separate choice for each option - you named the choices but this way your script will conflict in my opinion once you will try to recall the remembered choice. Not to mention that reader has to go every time first to first dress and accept it before the script will let him see the second dress …

1 Like

That is the template I used 0.0

Yes but how will the outfit show up?

Try this

label dressing_game_1
@NINA changes into ##ORIGINALOUTFIT##

NINA (talk_think_neutral)
What do I want to wear?

choice
“pink cutie” {

@NINA changes into ##OUTFITNAME1##

NINA
Should I wear this?

choice
“It’s perfect.” {

NINA (talk_neutral)
I love this!

goto after_dressing_game_1

} “No, I want to try something else.” {

goto dressing_game_1

}
} “Soft and Cozy.” {

@NINA changes into ##OUTFITNAME2##

NINA
Should I wear this?

choice
“It’s perfect.” {

NINA (talk_neutral)
I love this!

goto after_dressing_game_1

} “No, I want to try something else.” {

goto dressing_game_1

}
} “Fashionable Denim” {

@NINA changes into ##OUTFITNAME3##

NINA
Should I wear this?

choice
“It’s perfect.” {

NINA (talk_neutral)
I love this!

goto after_dressing_game_1

} “No, I want to try something else.” {

goto dressing_game_1

}
}

label after_dressing_game_1

1 Like

than you have heavily modified it … daras template has 2 times word choice (and there is reason for it) while yours have many more and therefore it works completly different

1 Like

I originally used it and some people were giving me diff templates to use so that’s why

you shouldn’t have the outfit names in parentheses.
it should look like this

CHARACTER
What would you like to wear?

choice
“Cute”{
@CHARACTER changes into outfitname
}
“Casual”{
@CHARACTER changes into outfitname
}
“Nice”{
@CHARACTER changes into outfitname
}

and so on and so on… i don’t know how it got so botched when you added it into your script , but that’s the correct format you’ll have to change the outfit and character names accordingly

well I get that too many help can be confuzing - one is sure Daras template are proven to work % - if you will fallow % the coding. But of cause feel free to do it different way. :blush:

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