Outfit changing prob

#only write label once.

label dress_end

if (DRESS =0){

NARR
You need to choose an outfit first.

goto dress

}else{

}

@GIRL exits right

**#add else to the code. The else should always be the last option when using if/elif/else or if/else to remember a choice for points, or any other method like gains. For your code, I’m assuming, they gain a point if they change (so like @DRESS =1 for each option) but if they choose CHECK, and didn’t change, it will tell them to choose something because they sit at zero points. Before the dressing game label of label dress, you should write @DRESS =0 so:

@DRESS =0

label dress

#dressing game here

#Do this to avoid any glitches. More info here:

It’s also best to test on the app. Another helpful guide: HOW TO: Reset Story Progress + Bonus Stuff :blob_sun:

Point for each option example using a portion of code:

}“Formal Blue”{
@GIRL changes into formal blue
@DRESS =1
goto dress
}

2 Likes