Label not working

Hey there! I have a little problem that I can’t seem to made it work, in my script everything works, but when I confirm I want a “Generic Female” it takes me to the plus one, what can I do?
Thank you very much for your help :kiss: :heart:

@pause for 0

label body_female_type_pick

@YOU changes into Underwear
NARRATOR
Which body type do you want?

choice (body)
“Generic” {
@remove YOU CURVY
@YOU changes into Underwear
@YOU changes body into Female Generic Body
@YOU spot 1.280 164 31 and YOU faces right and YOU starts idle
@pause for 1
goto body_female_type_pick
} “Athletic” {
@remove YOU CURVY
@YOU changes into Underwear
@YOU changes body into Female Athletic Body
@YOU spot 1.280 164 31 and YOU faces right and YOU starts idle
@pause for 1
goto body_female_type_pick
} “Soft” {
@remove YOU CURVY
@YOU changes into Underwear
@YOU changes body into Female Soft Body
@YOU spot 1.280 164 31 and YOU faces right and YOU starts idle
@pause for 1
goto body_female_type_pick
} “Plus” {
@remove YOU
@YOU CURVY changes into Underwear curvy
@YOU CURVY spot 1.280 164 31 and YOU CURVY faces right and YOU CURVY starts idle
@pause for 1
goto body_female_type_pick
} “Choose this!” {
NARR
Are you sure this is the body type you want?

choice
“Yes!” {
if (Generic){
goto you_custom_btx
} elif (Athletic){
goto you_custom_btx
} elif (Soft){
goto you_custom_btx
} else {
goto you_curvy_custom_btx
}
} “No, choose a different body type.” {
goto body_female_type_pick
}
}

label you_custom_btx

I think the problem is that the if statements are checking for something that doesn’t exist. Since you haven’t used the gain system (ex. gain Generic), there is nothing establishing that the reader has confirmed any of the body types, so it automatically marks all the ifs-elifs as false and goes onto the else.

1 Like

I think it’ll work better if you put each of the confirmation choices inside each body type choice and utilize the gain system. Like this:

@.YOU changes into Underwear
NARRATOR
Which body type do you want?

choice (body)
“Generic” {
@.remove YOU CURVY
@.YOU changes into Underwear
@.YOU changes body into Female Generic Body
@.YOU spot 1.280 164 31 and YOU faces right and YOU starts idle
@.pause for 1

NARRATOR
Are you sure this is the body type that you want?
choice
“Yes” {
gain Generic
goto you_custom_btx
} “No” {
goto body_female_type_pick
}

} “Athletic” {
@.remove YOU CURVY
@.YOU changes into Underwear
@.YOU changes body into Female Athletic Body
@.YOU spot 1.280 164 31 and YOU faces right and YOU starts idle
@.pause for 1

NARRATOR
Are you sure this is the body type that you want?
choice
“Yes” {
gain Athletic
goto you_custom_btx
} “No” {
goto body_female_type_pick
}

} “Soft” {
@.remove YOU CURVY
@.YOU changes into Underwear
@.YOU changes body into Female Soft Body
@.YOU spot 1.280 164 31 and YOU faces right and YOU starts idle
@.pause for 1

NARRATOR
Are you sure this is the body type that you want?
choice
“Yes” {
gain Soft
goto you_custom_btx
} “No” {
goto body_female_type_pick
}

} “Plus” {
@.remove YOU
@.YOU CURVY changes into Underwear curvy
@.YOU CURVY spot 1.280 164 31 and YOU CURVY faces right and YOU CURVY starts idle
@.pause for 1

NARRATOR
Are you sure this is the body type that you want?
choice
“Yes” {
gain Curvy
goto you_curvy_custom_btx
} “No” {
goto body_female_type_pick
}
}

label you_custom_btx

I hope this helps.

1 Like

Yeah, it works now, thank you so much for your help :heart: :heart: :heart:

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