I need help with point system

SO I have already looked up Joseph Evans and the ONE video he has doesn’t show from stary to finished how to use them. All it showed is what happens if you choose one choice or the other throughout the episode. So please do say go check him out. I use his video’s a lot but this one is not something I have found helpful. So that being said I am new to the point system and would really love to use it in my story, can someone point me to a thread on here that shows and explains how to or can someone help me out?
At the moment want I want to use it for is the readers get to choose how the MC answers the other character and how she answers determines on how the other character treats her, in the beginning, they will have a chance again to get in good with them because they’re your boss but all choice will matter and I don’t know how to set it up or anything.

1 Like

Hey, don’t worry I was very confused at this stuff to at the beginning. You can check out Dara. Amarie’s thread

1 Like

Thank you so much. :slight_smile:

1 Like

Of course! Feel free to ask me if you need any help!

1 Like

sure will thank you :slight_smile:

1 Like

I need help :joy:

1 Like

Yeah of course! What do you need help with?

1 Like
    ABIGAIL (deepbreath)
(I got this, I hope.)

    choice 
"Answer him with confidence." if (ABIGAIL < 1) {

    ABIGAIL (talk_greet_neutral)
Yes, sir, I'm Abigail Blooming.

@ABIGAIL is idle_shiftweight_neutral_loop

@zoom on 317 343 to 401% in 0

    PRINCIPAL KEITH (talk_smile_happy_loop)
Nice to meet you hun, lets talk in my office.

@zoom on 196 343 to 401% in 0

    ABIGAIL (talk_agree_happy)
Yes, sir.

@ABIGAIL walks to spot 0.840 303 168 in 2
}
“Answer shyly.” elif (ABIGAIL > 1) {

    ABIGAIL (talk_awkward_loop)
H-hi I'm Ab-ab-abigail.

@ABIGAIL is idle_awkward_scratch_loop

@zoom on 317 343 to 401% in 0

    PRINCIPAL KEITH (think_rubchin)
(How is she going to teach 1st graders if she can't simply speak to me?)
    PRINCIPAL KEITH (talk_armsraised_neutral)
This way, please.

@zoom on 196 343 to 401% in 0

    ABIGAIL (sigh_disappointed)
(Way to show him you can do the job, he's never going to hire me now.)

    NARRATOR (PRINCIPAL KEITH)
I don't have all day Ms.Blooming!

@ABIGAIL is react_shocked_gasp

@ABIGAIL walks to spot 0.840 303 168 in 2 AND ABIGAIL is run_athletic_neutral_loop

}
@transition fade out black 1.5

I have a error that says: Unexpected ELIF: elif

Also umm so the choice will determine the way PRINCIPAL KEITH is with her. So should I have his name in the brackets of hers? I’m so lost

1 Like

So do you want to do different outcomes based on the # of points you have? Or do you want to let the reader earn and lose points depneding on the choices they make?

1 Like

I want to allow them to earn and lose points but there will be other characters that I want the point system with also. I want him to not really like her if they click the second option at first but have the chance to get him to like her.

1 Like

oh ok so for this sutition you would do the +1 or -1 thing

Like this
ABIGAIL (deepbreath)
(I got this, I hope.)

choice 

“Answer him with confidence.”{
@PRINICIPAL KEITH +1
ABIGAIL (talk_greet_neutral)
Yes, sir, I’m Abigail Blooming.
@ABIGAIL is idle_shiftweight_neutral_loop

@zoom on 317 343 to 401% in 0

PRINCIPAL KEITH (talk_smile_happy_loop)

Nice to meet you hun, lets talk in my office.
@zoom on 196 343 to 401% in 0

ABIGAIL (talk_agree_happy)

Yes, sir.
@ABIGAIL walks to spot 0.840 303 168 in 2
}
“Answer shyly.”{
@PRINCIPAL KEITH -1
ABIGAIL (talk_awkward_loop)
H-hi I’m Ab-ab-abigail.
@ABIGAIL is idle_awkward_scratch_loop

@zoom on 317 343 to 401% in 0

PRINCIPAL KEITH (think_rubchin)

(How is she going to teach 1st graders if she can’t simply speak to me?)
PRINCIPAL KEITH (talk_armsraised_neutral)
This way, please.
@zoom on 196 343 to 401% in 0

ABIGAIL (sigh_disappointed)

(Way to show him you can do the job, he’s never going to hire me now.)

NARRATOR (PRINCIPAL KEITH)

I don’t have all day Ms.Blooming!
@ABIGAIL is react_shocked_gasp

@ABIGAIL walks to spot 0.840 303 168 in 2 AND ABIGAIL is run_athletic_neutral_loop

}
@transition fade out black 1.5

Hopefully I answered it, but if I didn’t let me know then

1 Like

Thank you so much. :slight_smile: So since I want other characters to gain and lose points I would do the same?

1 Like

Also later on in the story how would I go back to wether she has good points or bad?

1 Like

Yes you would so if there was a love interest and you want the MC to earn and lose points with him you would:

choice
“Talk Nicely”{
@hismoonrose interest +1
add dialuges
}
“Talk Rude”{
@hismoonrose interest -1
add dialouges
}

Like that above

1 Like

I usually let the readers see how many points they have and that way they can see if they have - points or + points. You can also keep track of it on a paper as well

Like when he talks to her later on in the story through the points will determine how he acts how would I code that?

1 Like

You would then use the if/elif/else code

Example:

ABIGAL
Do you know where the washroom is?

if (PRINCIPAL KEITH > 1) {
this is the good outcome
You have more Prinicpal Keith points then 1

}
elif (PRINCIPAL KEITH =1){
Usually the ok outcome
You have only 1 Principal Keith points
}
else{
If you don’t have any Principal Keith points you would get the bad outcome

I get an error when I use the if and else

1 Like

The second example I did?
If you can, can you put the script on here, where is says error?

1 Like