Each character in the story has a score. The user can gain or lose points depending on what choices they make. Add or subtract points from a character’s name either when they speak or if they are standing off screen:
SARAH
I only watch the real football: soccer
LUIS -1
That is too bad.
SARAH
What, you have a problem with soccer?
@LUIS +1
You can also reset a character’s score to 0, if you need to clear the board. This can only be done this way:
@CHARACTER =0
Later you can use your score with a character to select different storylines.
SARAH
Hey I was wondering...
Wanna go to the movies?
if (LUIS > 1){
LUIS
Sure!
} elif (LUIS < -1){
LUIS
Ha. You’re kidding right?
I despise you!
} else {
LUIS
No, I have plans.
}