PLEASE HELP ME with CHOICES :D thaaaaaaaaaaaaaanks

Try this:

NARRATOR
What will you do?

choice (DIALOGUE)
“Threaten him” {

(The dialogue)

}
“Butter up his ego” {

(The dialogue)

}
“Beg for informations”{

(The dialogue)

}

if (DIALOGUE is “Threaten him”) {

NARRATOR
What will you do?

choice (DIALOGUE2)
“Butter up his ego” {

(The dialogue)

}
“Beg for informations”{

(The dialogue)

} elif (DIALOGUE is "Beg for informations){

NARRATOR
What will you do?

choice (DIALOGUE3)
“Threaten him” {

(The dialogue)

goto dialogue

}
“Butter up his ego” {

(The dialogue)

}

} else {

}

if (DIALOGUE2 is “Beg for informations”){

NARRATOR
What will you do?

choice
“Butter up his ego” {

}

} else {

}

if (DIALOGUE3 is “Threaten him”){

NARRATOR
What will you do?

choice
“Butter up his ego” {

}

} else {

}

Please tell me if it works

OMG you just caused me brain malfunction.:slight_smile: LOL I know I asked for it but OMG it looks so dificult.:smiley:
Now the 3 options which do not disapear look much more like good option for me.:smiley:
:crazy_face::crazy_face::crazy_face::crazy_face::crazy_face::joy::joy::joy::sweat_smile::rofl::thinking:

Do I understand right that in this script I have to copy the same dialogue there more times?

Yup

Tell me if it won’t work

I dont know if Idid something wrong but it shows eror…

I have it for testing written it this way:

    NARRATOR
What will you do?

choice (DIALOGUE)
“Threaten him” {
NARRATOR
Wrong 1
}
“Butter up his ego” {
NARRATOR
Right
}
“Beg for informations”{
NARRATOR
Wrong 2
}
if (DIALOGUE is “Threaten him”) {
NARRATOR
What will you do?
choice (DIALOGUE2)
“Butter up his ego” {
NARRATOR
Right
}
“Beg for informations”{
NARRATOR
Wrong 2
} elif (DIALOGUE is “Beg for informations”){
NARRATOR
What will you do?
choice (DIALOGUE3)
“Threaten him” {
NARRATOR
Wrong 1
goto dialogue
}
“Butter up his ego” {
NARRATOR
Right
}
} else {
}
if (DIALOGUE2 is “Beg for informations”){
NARRATOR
What will you do?
choice
“Butter up his ego” {
}
} else {
}
if (DIALOGUE3 is “Threaten him”){
NARRATOR
What will you do?
choice
“Butter up his ego” {
}
} else {
}

    NARRATOR
Go on with the story

But it writes :

I could be wrong, but try taking that } off of line 628

nop didnt helped it stil shows eror on the same line even I deleted this.

Maybe this thread will help.

Or @Dara.Amarie, @JemU776 can help.

2 Likes

it is simply to complicated for me to get and create by myself :(…and I generally think I am a technical type…ha ha have to take it back I guess.:joy:

One more should be there

When I deleted it it showed another eror on another line…thanks but I give up I will go with the first simply version which I already tested and works well…I gived it too much time and it is not a big deal if the coice will not disapear after all.:slight_smile:

You shouldn’t delete it, you should add one more :joy::joy:

Check this out:

I have seen this but As far as I understand it will still need modifications I dont know how to do… Because if the reader as firts pick ups right posibility the story should go on wiithout returning back to the other options… Whyle this scrit does… So how t is more suitable in case you need reader to give all 3 questions… Or not?

#Main choice starts here

        NARR
    What will you do?
choice (INFO)
"Threaten him." {
#wrong choice
#dialogue goes here

} "Butter up his ego." {
#correct choice
goto butter_ego

} "Beg for information." {
#wrong choice
#dialogue goes here
}



if (INFO is "Threaten him.") {
#This is if they chose the threaten him choice on the first try
        NARR
    What will you do?
choice (INFO)
"Butter up his ego." {
#correct choice
goto butter_ego

} "Beg for information." {
#wrong choice
#dialogue goes here
}

if (INFO is "Beg for information.") {
#this is if they got it wrong the second time
        NARR
    What will you do?
choice (INFO)
"Butter up his ego." {
#correct choice
goto butter_ego
}
} else {
goto butter_ego
}



} elif (INFO is "Beg for information.") {
#This is if they chose the beg choice on the first try

        NARR
    What will you do?
choice (INFO)
"Threaten him." {
#wrong choice
#dialogue goes here

} "Butter up his ego." {
#correct choice
goto butter_ego
}

if (INFO is "Threaten him.") {
#this is if they got it wrong the second time
        NARR
    What will you do?
choice (INFO)
"Butter up his ego." {
#correct choice
goto butter_ego
}
} else {
goto butter_ego
}


} else {
#this is if they chose the correct answer on the firsty try
goto butter_ego
}


label butter_ego
#dialogue for the butter ego scene goes here
#then continue the story.
1 Like

Thank you I will give it one more try!:))))

IT WORKS LIKE MAGIC!!!

Thaaaaaaaaaaaaaaaaaaaaaaaaaank you so very much!!!

1 Like

Marked as solved and closed. Thanks all!