DARA’S GUIDE: The Points System

you’d have to manually code it up to the max amount of points they can have. so if they can get a max of 3, you’d do it like this

example:
if (character = 0){
NARRATOR
You have 0/3 points
}
elif (character = 1){
NARRATOR
You have 1/3 points
}
elif (character = 2){
NARRATOR
you have 2/3 points
}
else {
NARRATOR
you have 3/3
}

2 Likes