It isn't clear from the Scripting Reference, but if I set a $DEST in a page script and the target page script also includes a $DEST redirect, will the chain of pages execute in sequence? Based on Intermediate Scripting I think it might.
Example: Page A uses a $DEST set to direct to Page B. Page B has a $DEST set for page C. When someone hits Page A, will they wind up on Page C with the page script of all three pages processed in A->B->C sequence, or will the $DEST only work to go to Page B and stop there?
A game I'm working on has a "Lose a turn" effect that can happen, in which multiple things get advanced automatically, and it would be great if I could have a "Lose your turn" page that I can bounce to from where ever that could then bounce them either back to Page A or too a small collection of pages for fail states or triggered secondary events. This would let me avoid having to replicate the "Lose a turn" code block on every page where that can happen.