QML - Create Your Own Adventure

Name Topic Used in Type
min States number attribute
The lowest value to which a number can be set (ie., by calculations). For example if the min-value is set to "-20", and you subtract 30 from 0, you will end up with -20 instead of -30.
The default min-value is -10000.
Sample:
<text>You find a little leather bag.<break/>
   Might come in handy if you ever need to
   carry many gold coins.
</text>

<state name="has little leather bag"/>
<number value="[gold]" name="gold" min="0" max="100"/>
<choice station="back">Continue</choice>