How To Let Reader See Characters Points?

If you want to show readers how many points they have, you will have to use the if/elif/else method to show each individual point score up to the maximum amount of points:

if (CHARACTER = 0) {
NARRATOR
You have 0 points.

} elif (CHARACTER = 1) {
NARRATOR
You have 1 point.

} elif (CHARACTER = 2) {
NARRATOR
You have 2 points.

...and so on. 

This is from Dara’s guide.

4 Likes