Dark_Reign

New Member
Jun 23, 2021
11
7
yes by tinkering code or by some mod (there might be one but can't name it).
i can add quick menu in screen.rpy file like this

Code:
## Quick Menu screen ###########################################################
##
## The quick menu is displayed in-game to provide easy access to the out-of-game
## menus.

screen quick_menu():

    ## Ensure this appears on top of other screens.
    zorder 100

    if quick_menu:

        hbox:
            style_prefix "quick"

            xalign 0.5
            yalign 1.0

            textbutton _("Back") action Rollback()
            textbutton _("History") action ShowMenu('history')
            textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
            textbutton _("Auto") action Preference("auto-forward", "toggle")
            textbutton _("Save") action ShowMenu('save')
            textbutton _("Q.Save") action QuickSave()
            textbutton _("Q.Load") action QuickLoad()
            textbutton _("Prefs") action ShowMenu('preferences')


## This code ensures that the quick_menu screen is displayed in-game, whenever
## the player has not explicitly hidden the interface.
init python:
    config.overlay_screens.append("quick_menu")

default quick_menu = True

style quick_button is default
style quick_button_text is button_text

style quick_button:
    properties gui.button_properties("quick_button")

style quick_button_text:
    properties gui.button_text_properties("quick_button")


################################################################################
but it shows black screen with a box on bottom right with start game load game preferences quit

any idea how should i correct the code
 
Last edited:

Bibifoc

Engaged Member
Apr 7, 2018
2,551
5,738
i can add quick menu in screen.rpy file like this

Code:
## Quick Menu screen ###########################################################
##
## The quick menu is displayed in-game to provide easy access to the out-of-game
## menus.

screen quick_menu():

    ## Ensure this appears on top of other screens.
    zorder 100

    if quick_menu:

        hbox:
            style_prefix "quick"

            xalign 0.5
            yalign 1.0

            textbutton _("Back") action Rollback()
            textbutton _("History") action ShowMenu('history')
            textbutton _("Skip") action Skip() alternate Skip(fast=True, confirm=True)
            textbutton _("Auto") action Preference("auto-forward", "toggle")
            textbutton _("Save") action ShowMenu('save')
            textbutton _("Q.Save") action QuickSave()
            textbutton _("Q.Load") action QuickLoad()
            textbutton _("Prefs") action ShowMenu('preferences')


## This code ensures that the quick_menu screen is displayed in-game, whenever
## the player has not explicitly hidden the interface.
init python:
    config.overlay_screens.append("quick_menu")

default quick_menu = True

style quick_button is default
style quick_button_text is button_text

style quick_button:
    properties gui.button_properties("quick_button")

style quick_button_text:
    properties gui.button_text_properties("quick_button")


################################################################################
but it shows black screen with a box on bottom right with start game load game preferences quit

any idea how should i correct the code
Why do you need a quick menu exactly? :unsure:
 

Bibifoc

Engaged Member
Apr 7, 2018
2,551
5,738
You don't have permission to view the spoiler content. Log in or register now.
If you take a look to the help page on the main menu, you'll see there are more shorcuts than usual, like quick save/quick load for example.

But I don't get what you mean with your other example? You mean the "rollback" (when using the mouse wheel)?
 

Gabe Utsecks

Newbie
Oct 4, 2024
16
2
How do i keep my current 0.26 saves and delete the whole game, and use the saves for 1.0 update? the game is slowing down my laptop so i need to delete it without removing my current saves.
 
3.60 star(s) 347 Votes