Hiding text and choices

*if (Health < 100)
  Text here (haven't written this yet)

*if (Health < 100)
  *choice
    #
    #
    #

This should hide the choice and the associated text, right? Do I need a page_break anywhere before this if the (Health = 100)? Or do I just leave it as is and it will automatically add a page break if the character is not wounded?

Edit; first line wasn’t showing.

That will hide both, although you can also put the text and choice under the same *if to make it simpler.

*if (Health < 100)
	Text here (haven't written this yet)

	*choice
		#
		#
		#

You’ll need to put

*if (Health = 100)
	*page_break

Thanks. And do I put that before or after *if (Health < 100) ?

It can be either way.

This topic was automatically closed 24 hours after the last reply. If you want to reopen your WiP, contact the moderators.