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