Can someone help me understand the point system please

Like the title mentions, I need help understanding the point system. I’m using it in my 2nd story that I’m currently coding and well in Episode 2 the readers have the chance to gain 2 points for either the MC (HALEY) or her LI (ACE).
I just don’t know how to code it properly; I need help with:
HALEY 2 ACE 0
HALEY 1 ACE 1
ACE 2 HALEY 0
ACE 1 HALEY 1

I currently have it as this but it’s wrong, I played all outcomes and I messed up my coding somewhere along the line. Can someone help me correct it please? :pleading_face:

1 Like

For the easiest way to understand and make it work I’d suggest you @Dara.Amarie 's website!

Here’s her thread too!

1 Like

I used her guide, but I’m having trouble showing the points like how I want them to appear :worried:

1 Like

Umm, when you use the [Character number] in dialogue, I don’t think there’s a need for that code above :thinking: you can try removing it once.
You want to give them the chance to gain points by a choice or separately?

I’m kinda bad at explaining but I’ll try my best :see_no_evil:

1 Like

this guide might help! :smiley:

1 Like

By choice, so in the episode there’s a shower scene where they gain a point for either character. Then later on in the story again by choice to gain another point making it a total of 2 points they can possibly gain for this episode


1 Like

Oh alright! Let me write it down for you!

choice
“YELL” {
@ HALEY +1

the dialogue you wish to input

} “Sass” {
@ ACE +1

the dialogue you wish to input

}

1 Like

That’s what I have done for each scene containing the points. Sorry if I’m not clear enough I’m trying to show the total points you gained at the end of the episode but I get this

1 Ace point, 1 Haley point

I picked Yell and Spare her life


Supposed to be 2 Ace points but I’m not getting that

I picked Sass and Spare her life

I get the same thing if I were to pick the other options

1 Like

Did u use the if/elif code too here?

You can try:

NARR
You have [Haley’s Char no.] points with Haley.

NARR
You have [Ace’s Char no.] points with Ace.

Just this. And remove the if/elif/else code for once

AND if there weren’t any points system in the previous chapter, put
@ HALEY=0
@ ACE=0
at the very beginning of the chapter

1 Like

I started to use the point system in episode 2 which is where I’m currently stuck with this problem. So the easier way to show how many points the reader has is to get rid of the if/elif and just use a Narrator speech bubble?

Edit: in the beginning of the chapter I did include
@ Ace =0
@ Haley =0

1 Like

Yes love, just the character number is sufficient. Try it once

1 Like

Okay I’ll try it out in bit, I’ll let you know if it works :relaxed: Thanks for explaining it to me by the way as well

1 Like

No worries, I hope it works out! :two_hearts:

1 Like

It worked! Thank you once again :smiling_face_with_three_hearts:

1 Like

:star_struck::star_struck::star_struck: yaaayy thank god! You’re very welcome! :heart:

1 Like

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