ssod

<-- ... --> Comment Tag

The <-- ... --> tag in Seven Spells of Destruction allows content authors to embed non-displayed commentary directly in paragraph content. These comments are ignored entirely by the game engine and do not affect rendering, logic, navigation, or player experience.


Syntax

<!-- This is a comment -->

Comments must begin with <!-- and continue until the closing -->. Everything between these markers is skipped during processing.


Purpose

This tag is useful for:


Behaviour


Example

<!-- This paragraph ends here logically -->
<if flag "has_key">
You unlock the door.
<endif>

The comment in the example is ignored by the parser, and the logic block executes normally.


Notes