Need help with point system. Please help!

Hi! I want to use the point system for my two LIs. How do I code the point system with one LI and with two LIs?

LIs names are: Haydon and Kieran

Thank you for helping!

Adding/substracting points:

@HAYDON +1 / -1
@KIERAN +1 / -1

Then when refering to the amount:

if (HAYDON<2) {
NARRATOR
Looks like you're not on good terms with Haydon...
}

or

if (KIERAN>HAYDON) {
NARRATOR
You have more points with Kieran than Haydon.
}

If you want to diplay the points for the reader, here’s a guide in how to do that:
How to: display character points

1 Like

What if I only want to show when the reader has gained a Love point for let’s say for example Haydon for picking a flirty choice vs ignoring him where the reader would not gain any points?

You can do that by using reader messages. Example:

HAYDON
Do you like football?
choice
"Correction: I LOVE football!" {
MC
Correction: I LOVE football!
readerMessage Haydon likes your response! with messageTitle Haydon +1
HAYDON
Glad to hear that.
}"Is that where they kick a ball into a net?" {
MC
Is that where they kick a ball into a net?
readerMessage No points gained...
That's soccer actually...
}
1 Like

I’m still confused

You mean the message that pops out at the top of the screen? That’s a reader message.
Or what’s the issue? :sweat_smile:

1 Like

Here I’ll show you:


Someone told me the coding like this but I’m getting an error. I don’t know how to fix it.

Do you have a character called LOVE HAYDON? If you want to count points with Haydon you can just use @HAYDON +1

1 Like

No my character’s name is Haydon

Then you have to do it like
@HAYDON +1
and not
@LOVE HAYDON + 1

1 Like

Yes I changed it to that :blush:

1 Like

Does it work now?

1 Like

Yes thank you :blush:

1 Like

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.