Hi,
This one has me scratching my head And maybe theres a better way to do this?
In PassageA, I have something like this:
(if: $playerHealth > 0 and $monster1Health > 0)[Do stuff]
(elseif: $monster1Health > 0 and $playerHealth <= 0)[(set: $variable1 to false)(goto: "PassageB")]
(elseif: $playerHealth > 0 and $monster1Health <= 0)[(set: $variable1 to true)(goto: "PassageC")]
In PassageB, theres this:
(link: "PassageD")[(set: $variable2 to true)(goto: "PassageD")]
Everything works concerning the first if statement in PassageA. But when its time to trigger either of the elseif statements, I get taken directly to PassageD, without going to B or C.
Has anyone experienced something like this? Is there another way to automatically progress to new passages?
Thanks!
Tim
Comments
Thanks, though!