screen navigation(): vbox: style_prefix "navigation" xpos gui.navigation_xpos yalign 0.5 spacing gui.navigation_spacing if main_menu: textbutton _("Start") action Start() else: textbutton _("History") action ShowMenu("history") textbutton _("Save") action ShowMenu("save") textbutton _("Load") action ShowMenu("load") textbutton _("Cheat") action ShowMenu("cheat") textbutton _("Preferences") action ShowMenu("preferences") if _in_replay: textbutton _("End Replay") action EndReplay(confirm=True) elif not main_menu: textbutton _("Main Menu") action MainMenu() textbutton _("About") action ShowMenu("about") if renpy.variant("pc") or (renpy.variant("web") and not renpy.variant("mobile")): ## Help isn't necessary or relevant to mobile devices. textbutton _("Help") action ShowMenu("help") if renpy.variant("pc"): ## The quit button is banned on iOS and unnecessary on Android and ## Web. textbutton _("Quit") action Quit(confirm=not main_menu) screen cheat(): tag menu use game_menu(_("Cheat")): style_prefix "cheat" hbox: if main_menu: vbox: style_prefix "radio" label _("Jump to") textbutton _("Chapter 1") action Start("cheat_cap1") textbutton _("Chapter 2") action Start("cheat_cap2") textbutton _("Chapter 3") action Start("cheat_cap3") textbutton _("Chapter 4") action Start("cheat_cap4") textbutton _("Chapter 5") action Start("cheat_cap5") else: vbox: style_prefix "radio" label _("Change name of") textbutton _("Main Character") action Call("cheat_mc_name") textbutton _("[ai]") action Call("cheat_ai_name") textbutton _("[su]") action Call("cheat_su_name") label prep_intro: with Dissolve(.5) scene intro_bg with Dissolve(.5) python: mcs = renpy.input("Please enter the name of your character") if mcs=="": mcs="John" mc = Character("[mcs]", color="#283578", what_color="#34469e") return label cheat_cap1: call prep_intro jump cap1 label cheat_cap2: call prep_intro scene intro_bg_154 menu: "Enable denial?" "Yes": $ cap1_denial = True "No": $ cap1_denial = False jump cap2 label cheat_cap3: call prep_intro scene cap2_bg_272 menu: "Break contract with Aiko?" "Yes": $ cap2_rompe = True "No": $ cap2_rompe = False jump cap3 label cheat_cap4: call prep_intro jump cap4 label cheat_cap5: call prep_intro scene cap4_bg_98 menu: "Did you obey and wore the panties?" "Yes": $ obey_panties = True "No": $ obey_panties = False jump cap5 label cheat_mc_name: python: mcs = renpy.input("Please enter the name of your character") if mcs=="": mcs="John" mc = Character("[mcs]", color="#283578", what_color="#34469e") return label cheat_ai_name: python: ais = renpy.input("Please enter the name of [ai]") if ais=="": ais="Aiko" ai = Character("[ais]", color="#69008f", what_color="#8500b5") return label cheat_su_name: python: sus = renpy.input("Please enter the name of [su]") if sus=="": sus="Suki" su = Character("[sus]", color="#8f0029", what_color="#ab0031") return