Alright, i do not believe i have released this in my articles, however, i very much plan to add this in, in the next article:
For those of you who want to save page links, for example, the user was taken to a battle scene, and now you want to return to the page they were at, but the user could have been in many places for the battle to occur, here is a simple link script that will help you out:
Scenario (for explanation):
Player is walking around in forest, all of a sudden he encounters a flesh eating monkey. He attacks the flesh eating monkey and eventually kills it. He then continues on with his journey through the forest.
Adv Editor:
Youve got a ton of pages that encompass the forest, in ANY one of these pages, the encounter with the monkey could occur. Problem: you don't know how to make the user return to the place he had been before the attack because there are multiple places the player could have been.
So, on the page that the link takes the user to the battle, so the pagewhere the user is in the forest (the page that you want the user to return to) put this in the link script:
%LASTPAGEID := $PAGEID
And on the page that user leaves the battle, so the page that you want the user to click the link to return to the forest, in that link script, put this:
$DEST := "@P" + %LASTPAGEID
So that will make the destinationof that link take you back to where you were before the battle, the same page where you had previously been.
I hope this helps you with your storygame making :)