Basic Choices
choice "choice name" {
Everything you code between these brackets will be done ONLY if the readers click this choice
}
Gem Choices
choice (choice_name)
<PREMIUM> "choice name" {
}
choice (choice_name)
<GEMS> "choice name" {
}
Timed Choices
choice [timed:time]
"choice name" {
}
The app chooses the choice at the bottom by default
The app chooses 15 seconds by default if you're using timed choices.
REMEMBERING CHOICES
Method 1 : Flags
choice
" " {
gain flag_name
}
if (flag_name1) {
} elif (flag_name2) {
} elif (flag_name3) {
}
Method 2 : Within The choice
YOU HAVE WRITE THE CHOICES NAME IDENTICAL TO HOW YOU PUT THEM IN THE BEGINNING OR IT WON'T WORK (capitalization included)
choice (choose a name for the category of choices below : all of them)
" " {
} MAKE YOUR CHOICES
if (category name for the choices is choice name 1) {
} elif if (category name for choices is choice name 2) {
} elif (category name for choices is choice name 3) {
}
