Page 1 of 1

quick menu rollback in nvl mode

Posted: Sat Jun 09, 2018 10:01 am
by metaevar
hey there i've a question ^^
i'm using the quick menu in my game to rollback , but i can't use it (it don't apear) in NVL mode.
So i'm wondering if they're is a way to use it or to rollback in nvl ?

Re: quick menu rollback in nvl mode

Posted: Tue Jun 12, 2018 4:15 pm
by erickcire95
Pressing the key "Page Up" should rollback. Also, using the mouse wheel.

Re: quick menu rollback in nvl mode

Posted: Tue Jun 12, 2018 6:06 pm
by Imperf3kt
The quick menu is essentially just a screen, so just show it I believe. Never tried it myself.

Re: quick menu rollback in nvl mode

Posted: Wed Jun 13, 2018 9:13 am
by gas
(Despite the fact rolling back in NVL is quite senseless, having history screen and a full page of text already there...)

Re: quick menu rollback in nvl mode

Posted: Wed Jun 13, 2018 6:57 pm
by Imperf3kt
What happens when the page fills up and you skip the last line by accident, clearing the screen? Why, you rollback of course, no need to open the history screen.

Re: quick menu rollback in nvl mode

Posted: Thu Jun 14, 2018 10:54 pm
by erickcire95
Or what if you missclicked a choice

Re: quick menu rollback in nvl mode

Posted: Sat Jun 23, 2018 12:22 pm
by metaevar
hey ther ^^, thx for the answers (and sorry for mine is this late :/ )
stillnot woking for me so here is my code :

for the screen

Code: Select all


##############################################################################
# Menu rapide
#
# Écran inclus par défaut pour les dialogues, ajoutant un accès rapide à
# plusieurs fontions utile
    
screen quick_menu:
    
    imagemap:
        
        ground 'ground.png'
        hover 'ground hover.png'
        
        hotspot (9, 12, 72, 73) action Rollback()
        hotspot (1190, 8, 81, 77) action ShowMenu("choicemenu")

and for the game :

Code: Select all

label start:
    
    show quick_menu
    
    nvl clear
    
    show met
    with dissolve
    
    pause
    
    nvl clear
    
    show ands
    with dissolve
    
    pause
    
    nvl clear

    scene elp
    with dissolve
and the "quick menu" screen don't show up :/

Re: quick menu rollback in nvl mode

Posted: Sun Jun 24, 2018 1:16 pm
by kivik
Can you show us a screenshot of your game? Maybe your quickmenu is actually being covered up?