What do I do if both my character have 0 points?

label points_2
tappable
“FRIENDSHIP POINT”{
if (FRIENDSHIP=0) {
NARRATOR
Friendship Points: 0/1
}
else {
NARRATOR
Friendship Points: 1/1
}
NARRATOR
Have you seen both your point values?
choice
“Yes! I’d like to continue.”{
goto afterpoints
}
“No! I’d like to go back.”{
goto points_2
}
}
“ROMANCE POINT”{
if (LOVE=0) {
NARRATOR
Love Points: 0/1
}
else {
NARRATOR
Love Points: 1/1
}

NARRATOR
Have you seen both your point values?
choice
“Yes! I’d like to continue.”{
goto afterpoints
}
“No! I’d like to go back.”{
goto points_2
}
}
label afterpoints

1 Like