Help with a "shuffle" code

I have been trying to figure this out for a couple days and I just can’t wrap my head around this.
So what I am trying to do is making an option for the player to shuffle through the resumes.


there’s 3 options and I was trying to use the point system because 1 made the option to re-read the story and I think that’s the only way I could do it.

But when I did it I wrote it like
if (POINTS =1) {
if (POINTS =1) {
@POINTS =2
} else {
@POINTS =3
}
} elif(POINTS =2) {
if (POINTS =2) {
@POINTS =3
} else {
@POINTS =1
}
}
else {
if (POINTS =3) {
@POINTS =1
} else {
@POINTS =2
}
}

and it would only shuffle between 2 resumes not 3…
If anyone needs more explanation please let me know

I would do it with labels, like this:

label resume_1
NARRATOR
What should I do?
choice
"LOOK INTO" {
...
}"SWITCH PAPER" {
...
goto resume_2
}

label resume_2
NARRATOR
What should I do?
choice
"LOOK INTO" {
...
}"SWITCH PAPER" {
...
goto resume_3
}

label resume_3
NARRATOR
What should I do?
choice
"LOOK INTO" {
...
}"SWITCH PAPER" {
...
goto resume_1
}
2 Likes

Ohh okay I made it way more complicated then i needed it to be!
Thank you @Martini_98

1 Like

No problem! Let me know if you need more help :hugs: :white_heart:

1 Like

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