How to let the readers see the character points?

You need to create overlays of numbers, then you use the “if” and “elif” for every possible score that the reader may have.
For example:

if (CHARACTER =1) {
@overlay ONE create
@overlay ONE opacity 1 in 0
NARRATOR
You have 1/ (total points) points
} elif (CHARACTER =2) {
@overlay TWO create
@overlay TWO opacity 1 in 0
NARRATOR
You have 2/ (total points) points
}
And so on…

1 Like