Help needed (URGENT)

Hiya! :sparkles:

So, I’ve got an error after adding a skipping choice in my story…:sneezing_face:
I’m going to publish my story by tomorrow morning and now I can’t preview my story to tweak the last things in the Episodes.

Is there a good coder who can fix this, like, now?!

Thank you in advance! :smiling_face_with_three_hearts:

This is my script:

1 Like

There is } before you are going to the next choice. And where is the else or elif

1 Like

Lol, I can’t see it :face_with_hand_over_mouth:
Which line?

Where is your else if you are using the if system?

1 Like

Here:

You need to add the }
after a command

1 Like

Yeah, I did, right?

If password is “blank” }… you did that instead of

If password is “blank”
}

1 Like

Nope, doesn’t work :sneezing_face:

Yeah, I wouldn’t do it like that. try putting the else leading to a label instead of putting all that inbetween. Have you used the name template because you wouldn’t change much to it to get what you want.

1 Like

Add this bracket } after goto story

It says this now:

Doesn’t work :woozy_face:

Let me have a look at my script and tell you. Give me few minutes!!

1 Like

Try this -

NARRATOR
What is the password

label Password_input

input What’s The Password?|What’s The Password?|Done(PASSWORD)

if (PASSWORD is “ACCESS1”) {

goto start_of_chapter

} else {
goto Password_input
}

label start_of_chapter

1 Like

So I did the same thing but the only difference is that I wrote elif on another line.

Or try the script @bakedpotato gave you

1 Like

I changed it, now I’ve got another error.
Now I’ve got this error, because I added the choice “Read” to it:

Thank you for you help girl :hugs:

1 Like

you are missing a } between your goto and skip

1 Like

Add one more bracket before “Skip”.

2 Likes