PLEASE HELP ME with CHOICES :D thaaaaaaaaaaaaaanks

#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!