How to display point system

As you guys may know I am a huge fan of @caitoriri and her story ‘the infected’ - at the end of her stories she displays how many survival points you’ve earned and the relationship points with characters - I’m wirting a story where I’d like to be able to do that but I have no idea how to display the points. Like saying "You have #/# points with CHARACTER does anyone know how to do this?

2 Likes

Yup, I’ll send it over.

label points_center

    NARRATOR
Choose who you would like to check your points with.

choice
“CHAR1” {
if (CHAR1 = 4) {
NARRATOR
You have 4/9 points with CHAR1.

} elif (CHAR1 = 5) {
NARRATOR
You have 5/9 points with CHAR1.

} elif (CHAR1 = 6) {
NARRATOR
You have 6/9 points with CHAR1.

} elif (CHAR1 = 7) {
NARRATOR
You have 7/9 points with CHAR1.

} elif (CHAR1 = 8) {
NARRATOR
You have 8/9 points with CHAR1.

} elif (CHAR1 = 9) {
NARRATOR
You have 9/9 points with CHAR1.

} else {
NARRATOR
You have 3/9 with CHAR1.
}
goto label points_center

} “CHAR2” {
if (CHAR2 = 4) {
NARRATOR
You have 4/9 points with CHAR2.

} elif (CHAR2 = 5) {
NARRATOR
You have 5/9 points with CHAR2.

} elif (CHAR2 = 6) {
NARRATOR
You have 6/9 points with CHAR2.

} elif (CHAR2 = 7) {
NARRATOR
You have 7/9 points with CHAR2.

} elif (CHAR2 = 8) {
NARRATOR
You have 8/9 points with CHAR2.

} elif (CHAR2 = 9) {
NARRATOR
You have 9/9 points with CHAR2.

} else {
NARRATOR
You have 3/9 with CHAR2.
}
goto label points_center
}

1 Like

Ahhh, I see, thank you, that makes sense, thanks

1 Like

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