Removing text
Yggdrasill Games
24 Jun 2017, 20:55I was wondering if there was a way to remove text out of the game like when you create a removable object and instead of the object name simply being removed from the objects bar and losing its link color it would also remove said object from the text.
The Pixie
25 Jun 2017, 07:31There is no built in facility to do it.
It is probably doable, using JavaScript and HTML span elements, but would not be easy...
JenniferKline
25 Jun 2017, 13:29Hmm, I wonder if there could be some kind of attribute given to the object as to "Visible" or not, and then written in text you could have {object.visible = True: There's an {object:thing} on the floor.}
Pertex
26 Jun 2017, 14:03you can define an output section with StartNewOutputSection and EndOutputSection which can be hidden with HideOutputSection
outputsection = StartNewOutputSection()
msg ("This will be deleted)
EndOutputSection (outputsection)
HideOutputSection(outputsection)