Does anyone know how to fix the errors on a Limelight choice template?

It says error and I have no idea what to do.

1 Like

In the error box it says it was never used did you

  • make sure it’s spelled correctly
  • Dis you use goto dressing_game_3 in your script anywhere
2 Likes

No I didn’t. Where would I put that in my script? It is also within a choice.

1 Like

Ok, that seems to be the problem, depending on what’s happening. Can you give me a quick rundown of the script quickly?

1 Like

Sure. Do you want me to copy and paste it?

Yes, That’s be easier

1 Like

INT. ANGIE BED - DAY

label dressing_game_1

if (stereotype is “Artist”) {

    LIGHTFEMALEAVATAR
I prefer to think of myself as the...

  choice 

“The Simple Artist”{
@LIGHTFEMALEAVATAR changes into ARTISTFIRST 1
}
“The Casual Artist”{
@LIGHTFEMALEAVATAR changes into ARTISTSECOND 1
}
“The Extravagant Artist”{
@LIGHTFEMALEAVATAR changes into ARTISTTHIRD 1
}
@pause for 2

    LIGHTFEMALEAVATAR (talk_think_neutral)
Is this the right outfit for me?

choice
“Yes!”{

    LIGHTFEMALEAVATAR (talk_think_neutral)
I love it!

@LIGHTFEMALEAVATAR stands screen center
}
“I think I’ll try something different.”{
goto dressing_game
}

label dressing_game_2

} elif (stereotype is “Rebel”) {

    LIGHTFEMALEAVATAR (think_rubchin)
What should I wear on my first day of junior year?

  choice 

“The Background Rebel”{
@LIGHTFEMALEAVATAR changes into REBELFIRST 1
}
“The Simple Rebel”{
@LIGHTFEMALEAVATAR changes into REBELSECOND 1
}
"The Unapologetic Rebel "{
@LIGHTFEMALEAVATAR changes into REBELTHIRD 1
}
@pause for 2

    LIGHTFEMALEAVATAR (talk_think_neutral)
Is this the right outfit for me?

choice
“Yes!”{

    LIGHTFEMALEAVATAR (talk_think_neutral)
I love it!

@LIGHTFEMALEAVATAR stands screen center
}
“I think I’ll try something different.”{
goto dressing_game
}

label dressing_game_3

} elif (stereotype is “Jock”) {

    LIGHTFEMALEAVATAR (think_rubchin)
What should I wear on my first day of junior year?

  choice 

“The Typical Jock”{
@LIGHTFEMALEAVATAR changes into JOCKFIRST 1
}
“The Cute Jock”{
@LIGHTFEMALEAVATAR changes into JOCKSECOND 2
}
“The Bold Jock”{
@LIGHTFEMALEAVATAR changes into JOCKTHIRD 1
}
@pause for 2

    LIGHTFEMALEAVATAR (talk_think_neutral)
Is this the right outfit for me?

choice
“Yes!”{

    LIGHTFEMALEAVATAR (talk_think_neutral)
I love it!

@LIGHTFEMALEAVATAR stands screen center
}
“I think I’ll try something different.”{
goto dressing_game
}
}

Is that what you need?

episode1

This also popped up when I tried to save it

you can’t have labels inside the choices you need to make your dressing games outside the choice

INT. ANGIE BED - DAY

if (stereotype is “Artist”) {
goto dressing_game_1
} elif (stereotype is “Rebel”) {
goto dressing_game_2
} else {
goto dressing_game_3
}

label dressing_game_1

    LIGHTFEMALEAVATAR
I prefer to think of myself as the...

choice
“The Simple Artist”{
@LIGHTFEMALEAVATAR changes into ARTISTFIRST 1
}
“The Casual Artist”{
@LIGHTFEMALEAVATAR changes into ARTISTSECOND 1
}
“The Extravagant Artist”{
@LIGHTFEMALEAVATAR changes into ARTISTTHIRD 1
}
@pause for 2

    LIGHTFEMALEAVATAR (talk_think_neutral)
Is this the right outfit for me?

choice
“Yes!”{

    LIGHTFEMALEAVATAR (talk_think_neutral)
I love it!

@LIGHTFEMALEAVATAR stands screen center
goto continue
}
“I think I’ll try something different.”{
goto dressing_game_1
}

label dressing_game_2

    LIGHTFEMALEAVATAR (think_rubchin)
What should I wear on my first day of junior year?

choice
“The Background Rebel”{
@LIGHTFEMALEAVATAR changes into REBELFIRST 1
}
“The Simple Rebel”{
@LIGHTFEMALEAVATAR changes into REBELSECOND 1
}
"The Unapologetic Rebel "{
@LIGHTFEMALEAVATAR changes into REBELTHIRD 1
}
@pause for 2

    LIGHTFEMALEAVATAR (talk_think_neutral)
Is this the right outfit for me?

choice
“Yes!”{

    LIGHTFEMALEAVATAR (talk_think_neutral)
I love it!

@LIGHTFEMALEAVATAR stands screen center
goto continue
}
“I think I’ll try something different.”{
goto dressing_game_2
}

label dressing_game_3
LIGHTFEMALEAVATAR (think_rubchin)
What should I wear on my first day of junior year?

choice
“The Typical Jock”{
@LIGHTFEMALEAVATAR changes into JOCKFIRST 1
}
“The Cute Jock”{
@LIGHTFEMALEAVATAR changes into JOCKSECOND 2
}
“The Bold Jock”{
@LIGHTFEMALEAVATAR changes into JOCKTHIRD 1
}
@pause for 2

    LIGHTFEMALEAVATAR (talk_think_neutral)
Is this the right outfit for me?

choice
“Yes!”{

    LIGHTFEMALEAVATAR (talk_think_neutral)
I love it!

@LIGHTFEMALEAVATAR stands screen center
goto continue
}
“I think I’ll try something different.”{
goto dressing_game_3
}

label continue
#continue here
@pause for 0

1 Like

You are literally the BEST! Thank you so much!

1 Like

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