I have a question about remembering choices

Can anyone tell me how to make more then one remember choices and how to use them to like if I want it 3 of the and to make it t be remembered for a long time how do I do it? :thinking:

2 Likes

If you want to remember three different choices at the same time, you won’t use the gain system anymore, but the point system instead.

2 Likes

change text to fit

NARR
Some text

choice (some_thing)
“option 1”{

}
“option 2” {

}
“option 3” {

}

and then when you need to remember

if (some_thing is “option 1”) {

}
elif (some_thing is “option 2”) {

}
else {

}

1 Like

ok I’ll try that.

1 Like

what is the point system?

1 Like

How do I use the point system that Jade135 is tali
king about

2 Likes

The point system is basically a method of coding where you allocate a point to a specific character. This point can be for any reason whatsoever. You can subtract points and add points. In the end, when you want to put the system to use, you can use the if/else command to use it, for example:

if (CHARACTER=1){
What happens here.
} elif (CHARACTER=2){
What happens here.
} else {
What happens here.
}

1 Like

Ok thanks :blob_hearts:

1 Like

No problem!

1 Like

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