Help with dressing game please

So, I’m using a templet by Joseph evans. However, when I choose a outfit my character is not chaining into the out fit that I chose. Can someone tell me what I’m doing wrong?
Here’s the script:

INT. FASHION BOUTIQUE OL - DAY

@zoom reset

@MANNEQUIN spot 0.840 65 210 in zone 2 at layer -2 AND MANNEQUIN faces left

@MANNEQUIN2 spot 0.840 164 210 in zone 2 at layer -1 AND MANNEQUIN2 faces left

@MANNEQUIN3 spot 0.840 262 210 in zone 2 at layer 0 AND MANNEQUIN3 faces left

@MANNEQUIN starts talk_handsonhips

@MANNEQUIN2 starts primp_condescend

@MANNEQUIN3 starts talk_gossip

@MANNEQUIN4 spot 0.840 65 210 in zone 3 at layer -2 AND MANNEQUIN4 faces left

@MANNEQUIN5 spot 0.840 164 210 in zone 3 at layer -1 AND MANNEQUIN5 faces left

@MANNEQUIN6 spot 0.840 262 210 in zone 3 at layer 0 AND MANNEQUIN6 faces left

@MANNEQUIN4 starts talk_sad_clutch

@MANNEQUIN5 starts think

@MANNEQUIN6 starts talk_exclaim_yes

@LEON enters from left to upscreen left

@pause for a beat

@YOU enters from left to screen left

@pause for a beat

@pan to zone 2

@pause for a beat

@pan to zone 3

@pause for a beat

@cut to zone 1

    LEON (talk_happy_smile)
Which one do you like the best?

    YOU (think)
(Hmm...)
(Let's take a closer look.)

@pan to zone 2

@zoom on 320 270 to 231% in 3

label outfit1

@pause for a beat

    NARRATOR
This one?

choice (outfit)
“Next outfit -->”{

@zoom on 490 270 to 231% in 0.5

goto outfit2

}
“Choose outfit 1”{

    NARRATOR (YOU)
This is my favourite.

goto chose_dress

}

label outfit2

@pause for a beat

    NARRATOR
This one?

choice (outfit)
“Next outfit -->”{

@zoom on 640 270 to 231% in 0.5

goto outfit3

}
“<-- Previous outfit”{

@zoom on 320 270 to 231% in 0.5

goto outfit1

}
“Choose outfit 2”{

    NARRATOR (YOU)
This is my favourite.

goto chose_dress

}

label outfit3

@pause for a beat

    NARRATOR
This one?

choice (outfit)
“Next outfit -->”{

@pan to zone 3 in 0.5

goto outfit4

}
“<-- Previous outfit”{

@zoom on 490 270 to 231% in 0.5

goto outfit2

}
“Choose outfit 3”{

    NARRATOR (YOU)
This is my favourite.

goto chose_dress

}

label outfit4

@pause for a beat

    NARRATOR
This one?

choice (outfit)
“Next outfit -->”{

@zoom on 800 270 to 231% in 0.5

goto outfit5

}
“<-- Previous outfit”{

@pan to zone 2 in 0.5

goto outfit3

}
“Choose outfit 4”{

    NARRATOR (YOU)
This is my favourite.

goto chose_dress

}

label outfit5

@pause for a beat

    NARRATOR
This one?

choice (outfit)
“Next outfit -->”{

@zoom on 960 270 to 231% in 0.5

goto outfit6

}
“<-- Previous outfit”{

@zoom on 640 270 to 231% in 0.5

goto outfit4

}
“Choose outfit 5”{

    NARRATOR (YOU)
This is my favourite.

goto chose_dress

}

label outfit6

@pause for a beat

    NARRATOR
This one?

choice (outfit)
“<-- Previous outfit”{

@zoom on 800 270 to 231% in 0.5

goto outfit5

}
“Choose outfit 6”{

    NARRATOR (YOU)
This is my favourite.

goto chose_dress

}

label chose_dress

@cut to zone 1

@zoom reset

    LEON (talk_shrug)
Are you sure?

    YOU
...

choice
“Yep, I’m sure”{

    YOU (talk_happy_smile)
Yep, I'm sure.

}
“Let me take another look”{

    YOU (talk_think)
Let me take another look.

@pan to zone 2

@zoom on 320 270 to 231% in 3

goto outfit1

}

    YOU (talk_handsonhips)
I'm gonna get changed into it right now.

@YOU exits right

@transition fade out black 1

INT. BLACK - NIGHT

@pause for a beat

INT. FASHION BOUTIQUE OL - DAY

@LEON stands upscreen left in zone 1 AND LEON faces right

@transition fade in black 1

@YOU stands screen center in zone 2

if (outfit is “MANNEQUIN_default”){

@YOU changes into YOU_outfit1

}elif (outfit is “MANNEQUIN2_default”){

@YOU changes into YOU_outfit2

}elif (outfit is “MANNEQUIN3_default”){

@YOU changes into YOU_outfit3

}elif (outfit is “MANNEQUIN4_default”){

@YOU changes into YOU_outfit4

}elif (outfit is “MANNEQUIN5_default”){

@YOU changes into YOU_outfit5

}else{

}

@YOU enters from right to screen right

@YOU is idle_happy

The bolded part is suppose to be the choice option name, not the outfit name.
The choices that say ““Choose outfit 1” and “Choose outfit 2" and so on should be that part.

if (outfit is “Choose outfit 1") {

1 Like

So where would I put the name of the outfit in the script. I’m confused.

Change all of the bolded parts below to the choice names which are “Choose outfit 1” and so on… I also added in the command to change into outfit6 in the last else part because that’s where the 6th outfit goes.

1 Like

Thank you so much!!

Solved and closed. :smiley:

1 Like