0 votes
by (350 points)
I created a code in a pass without links and I need to call this pass in all other passages of my game with a <<include "PassageCode">>.

How can I do this?

1 Answer

0 votes
by (23.6k points)

Depending on when you want the code to be executed, there are several special passages where you can put it. Look here. If you have something that you want to be done or displayed at the beginning of every passage, just name that passage you created "PassageReady" for example

by (159k points)

I believe PassageHeader and PassageFooter are better choice than PassageReady if you want to display content either before or after that of the current Passage, as PassageReady is designed more for executing background code before the current Passage is rendered.

...