QML - Create Your Own Adventure

Name Topic Used in Type
station Station in attribute
The station in which this station will be included.
Use the wildcard character "*" at the beginning, end, or both sides of the string (or exclusively) to cover multiple (or all) stations at once.

Wildcard samples
Station ValueCovers stations
libraryEntrance libraryEntrance
library* libraryEntrance
libraryHall
libraryExit
*entrance libraryEntrance
castleEntrance
hutEntrance
*library* libraryEntrance
libraryHall
libraryExit
castleEntrance
hutEntrance
castleLibraryHall
* (All stations of the quest)


Station value comparisons are not case-sensitive.
Sample:
<include check="[player met dog]">
   <in station="house"/>
   <in station="woods*"/>
   <in station="castle*"/>
</include>
<text><break type="strong"/>The dog is by your side.
</text>

<choice station="petDog">Pet the dog</choice>