Hi everyone,
I'm trying to make it so that when the player enters a fight the existing output on the screen is hidden and then when the fight is over the existing output is unhidden with the fight outcome after it and the game goes back to normal. I know I can't use ClearScreen because that seems to delete the existing content completely and I need to be able to get it back. But I only want that room's worth of content up until when the player entered the fight.
I know about the StartNewOutputSection()
then EndOutputSection
then HideOutputSection
method but that seems to delete the content like ClearScreen does. Maybe there's some way of using this JS.uiHide ("#divOutputAlign3")
followed by JS.uiShow ("#divOutputAlign3")
for all the divOutputs on the page so far but...
I read this post and this linked post which seem like they're related to my problem but I'm not good enough at Quest code to really understand what's going on...
Thank you so much to anyone who is able to help!