(if: $inv contains ("Stick") and ("Stone"))[passage1]
(if: $history contains ("KilledOgre")[passage2]
(if: $inv contains ("Apple")[passage3]
Let's say you have stick and stone in your $inv.
But you did not "KilledOgre".
However, you also have an ("Apple") in your $inv.
You will get:
passage1
passage3
I want it to be
passage1
passage3
I assume the enter is there because passage2 is hidden between there, but I wish it to be not there at all unless you have ("killedogre"). Instead the next passage that is available should simply take it's place.
I have yet to find a way to be able to do this. It would make a ton of things easier in my game. I know ways around it by creating more passages but things would get really complicated if I wish to work out my idea as is.
Does anyone have a method for this?