Not allowing me to continue (resolved)

After creating choices to customize the characters, I continued with my script. However, instead of going to the script it is stuck on the customizing part and wont continue. I followed the script and guidelines and everything, I have no errors… its just stuck. I don’t know whats wrong with it.

Can you post a screenshot of your script where the error is occuring?

you probably put a goto label on the end so it’s going back to customisation

thats the thing, there is no visible error. ill take a picture though hold on

Do you have the goto labels anywhere?

@zoom reset
&LIN exits left AND LIN is walk_offset

#}

thats how I ended the script for customization

I labled my character as avatar_69 and it says goto avatar_69 at the end of the last option

But you need to have that label somewhere in the script so that it knows where to go
as in
label avatar_69
whatever you want to happen for that choice.
If you just want all of the choices to merge right at the point you are at you don’t need the goto’s at all.

There should be a label at the very end of the customization, and there should be a goto that leads to the ending label inside the “Done/Perfect” choice.

Like this

image

image

okay so where do i put like" goto finish"

because it tells me warning the label " " does not exist

You need to put
label finish
where you want to continue the story after the choices.
Put the goto finish in the choice that says perfect or done or whatever.

@LIN changes nose into Round
@LIN starts idle
goto breather0
}
“I would totally fuck myself”{
goto finish
}

label finish
@zoom reset
@LIN exits left AND LIN is walk_offset

#}

it still didnt work ): am i dumb or something?

I don’t understand what the
#} is for, it seems unneccessary…

i just copied and pasted from the script lol.

Are you using a whole cusotmization template? If you are there should be a choice at the very beginning (the choice that’s basically the “main menu” where you choose the hair, skin, eyes, etc.)

So something like this:

choice
“Skin Tone” {
goto fem_skin1
} “Hair” {
goto fem_hair1
} “Eyes” {
goto fem_eyes1
} “Eyebrows” {
goto fem_brows1
} “Face Shape”{
goto fem_face1
} “Nose” {
goto fem_nose1
} “Mouth” {
goto fem_mouth1
} <PREMIUM> “This is perfect!” {
goto female_end1
}

There should be a goto inside the choice that ends the customization (the “done” or “this is perfect” choice)

Then at the very very very end of the customization, there needs to be a matching label. So when you tap on “This is perfect” it will take you to the ending label to end the customization.

1 Like

yeah. its still not working.

begining:

choice
“Skin Tone” {
goto Colorbody_0
}
“Hair” {
goto hair0
}
“Eyes” {
goto eyes0
}
“Eyebrows” {
goto brows0
}
“Face Shape”{
goto head0
}
“Nose” {
goto breather0
}
“Mouth” {
goto lip0
}
“This is perfect!” {
goto avatar_end
}

end

"@LIN changes nose into Round
@LIN starts idle
goto breather0
}
“I would totally fuck myself”{
goto finish
}

label finish
@zoom reset
@LIN exits left AND LIN is walk_offset

#}

I changed the end to match “avatar_end” and its still not working.

Since you have avatar_end for the “this is perfect” choice, you need to have the exact same label at the end.

I figured it out. It was because my first character had the label avatar_end

so I changed character 2 to avatar_finish and it worked

I am no longer stuck