Page 1 of 1

Displaying both NVL and ADV modes simultaneously

Posted: Thu Nov 30, 2017 8:24 pm
by GrueDragon
I'd like to make a visual novel which displays both NVL and ADV modes, similar to how it is displayed on 999: 9 Hours, 9 Persons, 9 Doors.

Image

I tried following this thread and the threads that it leads to. So far I've managed to customize the NVL screen so that it displays on the lower portion of the screen, but not to display both screens at the same time.

ImageImage

This is the code I added to the NVL screen. The ADV say screen is very similar to this:

Code: Select all

screen nvl(dialogue, items=None):
    
    default new_screen = False
    on "show" action If (new_screen, Hide("say"), Return("1") )
    on "replace" action If (new_screen, Hide("say"), Return("1") )

style nvl_window:
    ysize 256
    yalign 1.0

Any clues on how to make this?