HELP ASAP choices!

INT. BRISTOLS DORM ROOM - DAY
@AURORA stands screen center AND AURORA faces right AND AURORA does it while think_rubchin
@pause for 1

label eat
AURORA (talk_think_neutral)
What should I eat?

choice
“Cupcake”{

 AURORA
Yay

}
AURORA (think_rubchin)
Do i really want it tho?

choice
"Yes i do!"{

AURORA (talk_smile_happy_loop)
Yay

}
“No i dont”{

AURORA (talk_sad_atcamera)

No

goto eat

}
“Donut”{
AURORA (talk_smile_happy_loop)
Yes donut!
}

AURORA (talk_think_neutral)
But do i really wanna eat donut?

choice
“Yid!”{

AURORA
Ye

}
“NO”{

AURORA
No

goto eat

}

@AURORA starts dance_armsup_hipthrust_loop

SO BASCIALLY I WANT THE CHOICE CUPCAKE AND DONUT TO BE TOGETHER BUT IT WOULDNT WORK!!! PLS HELP

You need to put the choices together as its acting as though it’s 2 different choices so try this

label eat
AURORA (talk_think_neutral)
What should I eat?

choice
“Cupcake”{
AURORA (talk_smile_happy_loop)
Yay
goto choosecupcake
}

“Donut”{
AURORA (talk_smile_happy_loop)
Yes donut!
goto choosedoughnut
}

Label choosecupcake

AURORA (talk_think_neutral)
But do i really wanna eat the cupcake?

choice
“Yid!”{

AURORA
Ye
goto continuestory
}
“NO”{

AURORA
No

goto eat

}

label choosedoughnut

AURORA (talk_think_neutral)
But do i really wanna eat the doughnut?

choice
“Yid!”{

AURORA
Ye
goto continuestory
}
“NO”{

AURORA
No

goto eat

}

label continuestory
@AURORA starts dance_armsup_hipthrust_loop

1 Like

Also if you are going to show whats shes eating don’t forget to add your gains :+1:

1 Like

tysmm it worked!!

1 Like

Glad I could help

Their method would’ve worked too, though. They were doing nested choices. The only thing they did wrong is misplaced brackets. This would also do what they wanted without as much coding:

INT. BRISTOLS DORM ROOM - DAY
@AURORA stands screen center AND AURORA faces right AND AURORA does it while think_rubchin
@pause for 1

label eat
AURORA (talk_think_neutral)
What should I eat?

choice
“Cupcake”{

 AURORA
Yay

AURORA (think_rubchin)
Do i really want it tho?

choice
"Yes i do!"{

AURORA (talk_smile_happy_loop)
Yay
}
“No i dont”{

AURORA (talk_sad_atcamera)
No

goto eat

}}
“Donut”{
AURORA (talk_smile_happy_loop)
Yes donut!

AURORA (talk_think_neutral)
But do i really wanna eat donut?

choice
“Yid!”{

AURORA
Ye

}
“NO”{

AURORA
No

goto eat

}}

@AURORA starts dance_armsup_hipthrust_loop
1 Like

Thats a good point sorry @sub23457

1 Like

you don’t have to apologise both of the methods helped me alot!

1 Like

Thanks :slight_smile: glad you managed to sort it x