Move the
@pause for 0
above the goto change_outfit
Put another } on line 288 or line 287.
It’s not working
What does it say?
Same
Erase the } in 287
It’s also not working
274: put choice and in the line under, the option
I can’t get you
Sorry
did you mean to make nested choices? like the answer to the first question leads to several other questions? or are they all supposed to be answers to the same general question
It’s a choice whether you want to go there or not if yes than another choice will come for outfit
Can you copy and paste the script here?
Ofcourse
YOU (scream_angry)
(No way!)
YOU (scream_angry)
(I am super tired!!)
choice “Cancel the date” {
YOU (talk_exhausted)
(I can’t do this!)
@YOU is text_phone_sad_loop
} “Go on the date.” {
@YOU is eyeroll_sarcastic
label change_outfit
YOU (talk_exhausted)
(What should I wear for the date?)
choice “Bridesmaid Dress Cotton Camo” {
@YOU is dustoff_neutral_loop
@YOU changes into Bridesmaid Dress Cotton Camo
@pause for a beat
YOU (yawn_bored)
(Is this what I want to wear)
choice “Eww no!” {
@pause for 0
goto change_outfit
} “Yes it looks perfect on me!” {
@YOU is eyeroll_subtle
gain chose_bridesmaid Dress Cotton Camo
@YOU exits left
@pause for 0
}
} “Turtleneck Cotton Grey Silver” {
@YOU is dustoff_neutral_loop
@YOU changes into Turtleneck Cotton Grey Silver
@pause for a beat
YOU (yawn_bored)
(Is this what I want to wear)
choice “Eww no!” {
@pause for 0
goto change_outfit
} “Yes it looks perfect on me!” {
@YOU is eyeroll_subtle
gain chose_Turtleneck Cotton Grey Silver
@YOU exits left
}
}
ah ok, so I think the issue (maybe not the error specifically) might be that a label is inside of the brackets (the computer won’t give you an error for this, but it won’t work correctly because in order to loop back up to that label, you would have to go back and re-select “go on the date”. try placing your dressing game outside of the brackets with a goto inside the “go on the date” brackets might help. does that make sense?
Alright, your gains cannot have spaces at all.
So you need to change all of your gains to something like this
“gain chose_Turtleneck_Cotton_Grey_Silver” instead of “gain chose_Turtleneck Cotton Grey Silver”
You also need another } at the end of the script
You are a life saver!
Thank you for trying and making effort