Dressing game help please!

Hello , i need help with my script if someone could please let me know where i have made a mistake as i am a bit confuse, it is the template script off of @Dara.Amarie :slight_smile:

Here is an image of what its saying is wrong

Screenshot 2022-01-04 5.12.31 PM

INT. WHITE WALL WOOD FLOOR - DAY
music music_neutralbeat
&overlay MODEL_1 create from CAMERA and overlay MODEL_1 opacity 0 in 0 and overlay MODEL_1 scales to 0.466 0.7 in 0 and overlay MODEL_1 shifts to 18 87 in zone 2 in 0 and overlay MODEL_1 to layer 3
&overlay MODEL_2 create from CAMERA and overlay MODEL_2 opacity 0 in 0 and overlay MODEL_2 scales to 0.466 0.7 in 0 and overlay MODEL_2 shifts to 146 87 in zone 2 in 0 and overlay MODEL_2 to layer 3
&overlay MODEL_3 create from CAMERA and overlay MODEL_3 opacity 0 in 0 and overlay MODEL_3 scales to 0.466 0.7 in 0 and overlay MODEL_3 shifts to 275 87 in zone 2 in 0 and overlay MODEL_3 to layer 3
&overlay MODEL_4 create from CAMERA and overlay MODEL_4 opacity 0 in 0 and overlay MODEL_4 scales to 0.466 0.7 in 0 and overlay MODEL_4 shifts to 84 87 in zone 3 in 0 and overlay MODEL_4 to layer 3
&overlay MODEL_5 create from CAMERA and overlay MODEL_5 opacity 0 in 0 and overlay MODEL_5 scales to 0.466 0.7 in 0 and overlay MODEL_5 shifts to 210 87 in zone 3 in 0 and overlay MODEL_5 to layer 3

@ MODEL1 changes into ZARITA_BALL1
@ MODEL2 changes into ZARITA_BALL2
@ MODEL3 changes into ZARITA_BALL3
@ MODEL4 changes into ZARITA_BALL4
@ MODEL5 changes into ZARITA_BALL5

&MODEL1 spot 0.99 70 205 in zone 2 at layer 1 and MODEL1 faces left and MODEL1 starts flirt_wink_atcamera_pose
&MODEL2 spot 0.99 197 205 in zone 2 at layer 1 and MODEL2 faces left and MODEL2 starts flirt_wink_atcamera_pose
&MODEL3 spot 0.99 7 205 in zone 3 at layer 1 and MODEL3 faces left and MODEL3 starts flirt_wink_atcamera_pose
&MODEL4 spot 0.99 134 205 in zone 3 at layer 1 and MODEL4 faces left and MODEL4 starts flirt_wink_atcamera_pose
&MODEL5 spot 0.99 260 205 in zone 3 at layer 1 and MODEL5 faces left and MODEL5 starts flirt_wink_atcamera_pose

@ ZARITA changes into ZARITA_UNDERWEAR

&ZARITA spot 1.085 -150 160 in zone 1 at layer 4
@ cut to zone 1 and zoom reset
&ZARITA walks to spot 1.085 170 160 in zone 1 in 2 then ZARITA starts think_rubchin
@ transition fade in white in 1
@ pause for 2
@ pan to zone 3 in 3
@ pause for 0.5
@ speechbubble reset and ZARITA starts idle_handsonhips_neutral_loop
@ pan to zone 1 in 3

    NARR
Scroll through the room and tap on the outfit you want to try on.

@ pause for 0

label outfit_closet_0x

tappable [pan:1:3]
"MODEL_1" {
@ ZARITA =BALL1
@ ZARITA previews outfit ZARITA_BALL1
} “MODEL_2” {
@ ZARITA =BALL2
@ ZARITA previews outfit ZARITA_BALL2
} “MODEL_3” {
@ ZARITA =BALL3
@ ZARITA previews outfit ZARITA_BALL3
} “MODEL_4” {
@ ZARITA =BALL4
@ ZARITA previews outfit ZARITA_BALL4
} “MODEL_5” {
@ ZARITA =BALL5
@ ZARITA previews outfit ZARITA_BALL5
}

^^^^^^
That is where it says there is an error : / SPACES ARE THERE TO STOP MENTIONS!

@ cut to zone 1 and zoom on 162 10 to 300% in 0
@ pause for 0.3
@ zoom on 166 483 to 300% in 2.5
@ ZARITA is primp_neutral
@ pause for 0.5
@ zoom reset
&ZARITA starts idle_handsonhips_neutral_loop

    NARRATOR
Is this the outfit you want to wear?

choice
“Definitely.” {
if (ZARITA = BALL1) {
@ ZARITA changes into ZARITA_BALL1
} elif (ZARITA = BALL2) {
@ ZARITA changes into ZARITA_BALL2
} elif (ZARITA = BALL3) {
@ ZARITA changes into ZARITA_BALL3
} elif (ZARITA = BALL4) {
@ ZARITA changes into ZARITA_BALL4
} elif (ZARITA = BALL5) {
@ ZARITA changes into ZARITA_BALL5
}
} “Pick another outfit.” {
@ ZARITA previews outfit ZARITA_UNDERWEAR
@ pause for 0
goto outfit_closet_0x
}

readerMessage Follow dara.amarie.ep on Instagram! with messageTitle Dressing Game Template Credit
@ ZARITA is dustoff_neutral_loop
@ ZARITA is idle_armscrossed_shifteyes_loop
& ZARITA walks to spot 1.085 -150 160 in 2
@ pause for 1
@ transition fade out
^^^
Spaces are there to stop the mentions

The command CHAR = xy goes with a number, like CHAR = 5 for examle.
Are you trying to remember the outfit choice?

Yes i am, so do i need to remove the word ball? :slight_smile:

I would do it like this:

"MODEL_1" {
@ZARITA =1
@ZARITA previews outfit ZARITA_BALL1
}"MODEL_2" {
@ZARITA =2
@ZARITA previews outfit ZARITA_BALL2
}

etc.

And then when referring to that choice:

if (ZARITA =1) {
...
}

That’s great, thank you!

1 Like

No problem :sunflower: Let me know if you need more help :slight_smile:

The only other question i would have is if i then said the
“if (ZARITA = 1)…”
in the next episode, would it remember from the other episode.
Like my character is choosing a costume for a ball which is happening in the next episode, so she gets changed back into her original clothing after-
so if i were to then say later on in the third episode “(zarita = 1)” ect, would it work? Hopefully that makes sense!

Yes, the amount of points will be remember until changed. :slight_smile: No matter which episode.

Thats great, thanks again!

1 Like

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