How to add points to multiple love interests

Hi!

To add (or subtract) points to a certain character, the code is really simple

@CHARACTER +1
@CHARACTER +2
@CHARACTER -1

You can also reset the character points to a certain amount

@CHARACTER =0
@CHARACTER =1

In the scenario you described, it would be something like this

NARR
What do you want to do?

choice
“Accept” {
@LI +1

MC
Thank you!

} “Decline” {

MC
I’m good.

}

3 Likes