Non-threaded

Forums » Advanced Editor Forum » Read Thread

Get help from the experts on variables, scripts, items, and other scary things.

Chapter and Page Questions

11 years ago

I started a story game with the advanced editor, and I have a few questions...

When I select a link that goes to other chapter, how do I choose a certain page in that chapter?

And is there any way to move pages to one chapter from another?

Pardon me if these questions were answered in the lovely articles this website provides that I am too lazy to read.

Thank you! ^u^

Chapter and Page Questions

11 years ago

There is no way to move pages around - other than to simply re-build them.

But yes, you can have Links take you to any Pages regardless of Chapters. To do so, you you need Advanced Scripting enabled, so it shows you the Page Numbers.

Then in the Link (any Link at all, as the Script will override where it actually points) - you add in the Script box off the Link ( := ):

$DEST := @P100

The above will send the Link Click to Page 100.

Note that if you forget the @ in the code it won't error out, but will give the reader a huge SQL Error when they actually play the game.

Chapter and Page Questions

11 years ago

Aha, I got it! Thanks!