Premium choice? (coding)

So i added CC but I want to add the choice for to use cc or not I added it awhile ago but then i erased it how would i code it?

You mean, you want to let the reader choose if they want to cc or not? If so, you can do it like this:

NARRATOR
Do you want to customize?

choice
"Yes!"{
goto customize
}"No."{
goto continue
}

label customize
#ADD CC TEMPLATE HERE

label continue
#CONTINUE CODING HERE
2 Likes

omg yess thank you!!! I did it awhile ago but i forgot how to do it :pleading_face: :smiling_face_with_three_hearts:

1 Like

Hi! Do you know how to make the choices in gold?

Hi! Yes, you’ll need to write it like this:

choice
<PREMIUM>"choice_one"{
}"choice_two"{
}
1 Like

So like this?

choice

“Yes!”{
goto customize
}“No.”{
}

for some reason premium isnt showing up but i did added that in .

If you wrote ‘PREMIUM’ before the choice, then yes:

choice
<PREMIUM>"Yes!"{
goto customize
}"No."{
}

Okay! How do i make the second one in gold I added premium next to no but it gave me an error.

choice
“Yes!”{
goto customize
}“No.”{
}
goto continue
}

Just as with the first choice! Like this, you make both choices gold:

choice
<PREMIUM>"Yes!"{
goto customize
}<PREMIUM>"No."{
goto continue
}

Like this you make only the first one:

choice
<PREMIUM>"Yes!"{
goto customize
}"No."{
goto continue
}

And like this you make only the second one:

choice
"Yes!"{
goto customize
}<PREMIUM>"No."{
goto continue
}
1 Like

Ah ok thank you! You are a lifesaver haha <3

1 Like

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