Rude’s Here to Help! Ask your questions babes 💙

lable choosing_outfit

ZAYONA (talk_think)
What one should i pick?

choice
"Blue Boo"{

@ZAYONA walks to screen center in zone 2

@ZAYONA changes into Blue Boo

}

"Yellow Glow"{

@ZAYONA walks to screen center in zone 2

@ZAYONA changes into Yellow Glow

}

"Cherry Bomb"{

@ZAYONA walks to screen center in zone 2

@zayona changes into Cherry Bomb

}

@ZAYONA walks to screen right in zone 3

@ZAYONA spot 1.280 75 -2

@pause for a beat

ZAYONA
(Should I pick this or somthing else?)

choice
"Choose this outfit"{

ZAYONA (talk_shrug)
Eh.This one looks good.

}
“Try somthing else”{

goto choosing_outfit

}strong text

It’s saying "unexpected garbage : The text on this line (The first line at the top) does not follow our formatting " What does It mean and how can I fix It?

you misspelled label

Also, delete the spaces between brackets and choices

oh… :sweat_smile:

Don’t worry happen to all of us :joy::sweat_smile:

Hey I have a question, I don’t know if it was already asked but I’m not gonna look through 900 posts lol :smile: Do you know how I can make a choice last beyond just one episode? I know about about the point system but is there any way to use the ‘GAIN_’ system for that purpose? Thank you!

Of course! You can use gains for remembering choices :slight_smile:

For example:
NARR
Text.
choice
“Option 1” {

gain first_option

}”Option 2”{

gain second_option

}

Note: gain names can’t contain spaces

Later in the episodes:

if (first_option) {

} else {

#second option
}

For more info check this thread:

1 Like

Could somebody please help me with my script? This scene has two characters entering from the right, then walking up the stairs, then exiting right on the top of the stairs. Everything works in the scene except for when one of the characters, Jacob, does not function properly when walking up the stairs (I will bold this particular coding that doesn’t appear to be working.) Instead of walking up the stairs, like the other character, Alexander, Jacob is not working and just doing an idle action. Thanks to anyone that can help!

INT. SUBWAY EXIT - DAY with SUBWAY CEILING at layer 8 with SUBWAY STAIRS at layer 6
@zoom reset
&JACOB spot 0.227 223 400 in zone 2 AND ALEXANDER spot 0.245 250 395 in zone 2
&AERONICA spot 0.524 77 257 AND AERONICA faces left AND AERONICA is head_bob
&STEELE spot 0.515 23 269 AND STEELE is sing_warmup_loop AND STEELE faces right
@JACOB moves to layer 8 AND ALEXANDER moves to layer 7 AND AERONICA moves to layer 3 AND STEELE moves to layer 2
@pause for a beat
&zoom on 320 297 to 230% in 10
@JACOB moves to layer 10 AND ALEXANDER moves to layer 9
&JACOB walks to spot 0.227 223 400 in zone 1 in 7 then JACOB moves to layer 3
@ALEXANDER walks to spot 0.245 250 395 in zone 1 in 6 then ALEXANDER moves to layer 2
&JACOB walks to spot 0.146 274 620 in zone 1 in 18 AND JACOB faces left AND JACOB does it while walk_rear then JACOB walks to spot 0.146 302 620 in 4 AND JACOB faces right
@ALEXANDER walks to spot 0.137 286 622 in zone 1 in 17 AND ALEXANDER faces left AND ALEXANDER does it while walk_rear then ALEXANDER walks to spot 0.137 310 622 in 3 AND ALEXANDER faces right
@pause for a beat

Thank you! This was really helpful. :blush:

hmm… add a pause for a beat in between maybe it will help, I think it’s because you’re using & and JACOB didn’t finish walking from a command before

@ALEXANDER walks to spot 0.245 250 395 in zone 1 in 6 then ALEXANDER moves to layer 2
@pause for a beat
&JACOB walks to spot 0.146 274 620 in zone 1 in 18 AND JACOB faces left AND JACOB does it while walk_rear then JACOB walks to spot 0.146 302 620 in 4 AND JACOB faces right

1 Like

Thanks for helping! I actually figured it out just a minute ago. I just switched around does it while walk_rear and JACOB faces left and it worked. :woman_shrugging:

&JACOB walks to spot 0.146 274 620 in zone 1 in 18 AND JACOB does it while walk_rear AND JACOB faces left then JACOB walks to spot 0.146 302 620 in 4 AND JACOB faces right

1 Like

Ok, I did what you told me to fix but it still isn’t working.

What’s the error now?

Nvm. I got it now. sorry to interrupt

Are any of you guys having issues with sounds and music? I know how to correctly use them, I have in the past, but for the past few weeks it has shown this or just hasn’t even worked. Can you guys help?
09%20PM|690x311

Hello, I need help for something on my new story. So I have these two characters in a big bedroom and they are sitting on their bed doing homework. They are in zone 2. I have the camera pan to zone 2 from zone 1 because i want the readers to see the whole room. Whenever it pans from zone 1 to zone 2, the characters appear right after its done panning. I just want them their before hand so when it pans to zone 2 they are already sitting there. Am I doing something wrong with the coding?

INT. BEDROOM POSTERWALL - DAY

@pan to zone 2
@ASH spot 0.889 61 289 AND ASH faces right AND ASH starts idle_sit_leanforward_impressed_loop

@CHLOE spot 0.899 233 287 AND CHLOE faces left AND CHLOE starts idle_sit_serious_loop

I’ve tried putting the @pan to zone 2 after but then they are sitting in mid-air in zone 1 while panning to zone 2.
I would really appreciate help for this, Thanks!

I can’t see the image

Add in the zone to the spotting in order to put that characters in the right zone without having to be in that zone:

INT. BEDROOM POSTERWALL - DAY

@ASH spot 0.889 61 289 in zone 2 AND ASH faces right AND ASH starts idle_sit_leanforward_impressed_loop

@CHLOE spot 0.899 233 287 in zone 2AND CHLOE faces

@pan to zone 2

Oh my gosh, thank you so much, this worked great!

Hello again, thanks for helping me last time but I have another question.
Can you tell me whats wrong with this? I want my characters to enter at the same time but it keeps giving me a warning that say,s use @character enters from x to screen y.

This is my coding for my charcters,

@ASH enters from left to screen left AND ASH is facing right AND ASH is walk_angry_loop

@CHLOE enters from left to screen right and CHLOE is facing right

I would appreciate the help:)

@ASH enters from left to screen left AND ASH faces right AND ASH is walk_angry_loop

@CHLOE enters from left to screen right and CHLOE faces right