#Mod for the game Hillside / KoGa3# #---------------------some general settings---------------------# # new audio channels for the game (not used so far) init python: renpy.music.register_channel("sound1", mixer="sfx") renpy.music.register_channel("sound2", mixer="sfx") renpy.music.register_channel("music1", mixer="music") #jukebox playing time conversion init python: def convert_float_into_time(t): i, f = divmod(t, 1) i = int(i) m, s = divmod(i, 60) h, m = divmod(m, 60) return "{:02}:{:02}".format(m, s) #---------------------shortcut key for Mod menu screen---------------------# init python: # key: Shift + k. config.keymap['KoGa3ScreenCheat'] = "shift_K_k" define config.overlay_screens = ["keymap", "quick_menu"] screen keymap: key "KoGa3ScreenCheat": action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] #---------------------Textbutton / Colors---------------------# init python: style.KoGa3_text.font = "KoGa3.ttf" #insensitive style.KoGa3_text.color = "#c4aead" #"#808080" "#ffffff" style.KoGa3_text.size = 30 #style.KoGa3_text.line_spacing = 30 style.KoGa3_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] style.KoGa3_1_text.font = "KoGa3.ttf" #selected 1 style.KoGa3_1_text.color = "#c4aead" #"#808080" "#ffffff" style.KoGa3_1_text.size = 30 #style.KoGa3_text.line_spacing = 30 style.KoGa3_1_text.outlines = [ (absolute(3), "#000000", absolute(1), absolute(1)) ] #Android: 4 style.KoGa3_1a_text.font = "KoGa3.ttf" #selected 1 style.KoGa3_1a_text.color = "#c4aead" #"#808080" "#ffffff" style.KoGa3_1a_text.size = 28 #style.KoGa3_1a_text.line_spacing = 28 style.KoGa3_1a_text.outlines = [ (absolute(3), "#000000", absolute(1), absolute(1)) ] #Android: 4 style.KoGa3_2_text.font = "KoGa3.ttf" #selected 2 style.KoGa3_2_text.color = "#ffffff" #"#808080" "#ffffff" style.KoGa3_2_text.size = 30 #style.KoGa3_text.line_spacing = 30 style.KoGa3_2_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] style.KoGa3_button_text.font = "KoGa3.ttf" style.KoGa3_button_text.color = "#87cefa" #"#808080" "#ffffff" style.KoGa3_button_text.hover_color = "#c90016" style.KoGa3_button_text.selected_color = "#ffff00" style.KoGa3_button_text.insensitive_color = "#c4aead" style.KoGa3_button_text.size = 30 style.KoGa3_button_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] style.KoGa3_1_button_text.font = "KoGa3.ttf" style.KoGa3_1_button_text.color = "#87cefa" style.KoGa3_1_button_text.hover_color = "#c90016" style.KoGa3_1_button_text.selected_color = "#ffff00" style.KoGa3_1_button_text.insensitive_color = "#c4aead" style.KoGa3_1_button_text.size = 30 style.KoGa3_1_button_text.outlines = [ (absolute(3), "#000000", absolute(1), absolute(1)) ] #Android: 4 style.KoGa3_1a_button_text.font = "KoGa3.ttf" style.KoGa3_1a_button_text.color = "#87cefa" style.KoGa3_1a_button_text.hover_color = "#c90016" style.KoGa3_1a_button_text.selected_color = "#ffff00" style.KoGa3_1a_button_text.insensitive_color = "#c4aead" style.KoGa3_1a_button_text.size = 28 style.KoGa3_1a_button_text.outlines = [ (absolute(3), "#000000", absolute(1), absolute(1)) ] #Android: 4 style.KoGa3_QuickMenu1_button_text.font = "KoGa3.ttf" style.KoGa3_QuickMenu1_button_text.color = "#ffffff" style.KoGa3_QuickMenu1_button_text.hover_color = "#87cefa" style.KoGa3_QuickMenu1_button_text.selected_color = "#ffffff" style.KoGa3_QuickMenu1_button_text.insensitive_color = "#a9a9a9" #style.KoGa3_QuickMenu1_button_text.size = 22 style.KoGa3_QuickMenu1_button_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] style.KoGa3_QuickMenu2_button_text.font = "KoGa3.ttf" style.KoGa3_QuickMenu2_button_text.color = "#ffffff" style.KoGa3_QuickMenu2_button_text.hover_color = "#87cefa" style.KoGa3_QuickMenu2_button_text.selected_color = "#ffffff" style.KoGa3_QuickMenu2_button_text.insensitive_color = "#a9a9a9" #style.KoGa3_QuickMenu2_button_text.size = 22 #style.KoGa3_QuickMenu2_button_text.outlines = [ (absolute(1), "#000000", absolute(0), absolute(0)) ] #buttons 2-5 for the info screen style.KoGa3_2_button_text.font = "KoGa3.ttf" style.KoGa3_2_button_text.color = "#ff9999" style.KoGa3_2_button_text.hover_color = "#800000" style.KoGa3_2_button_text.selected_color = "#ff9999" style.KoGa3_2_button_text.size = 23 style.KoGa3_2_button_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] style.KoGa3_3_button_text.font = "KoGa3.ttf" style.KoGa3_3_button_text.color = "#98fb98" style.KoGa3_3_button_text.hover_color = "#2a8000" style.KoGa3_3_button_text.selected_color = "#98fb98" style.KoGa3_3_button_text.size = 23 style.KoGa3_3_button_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] style.KoGa3_4_button_text.font = "KoGa3.ttf" style.KoGa3_4_button_text.color = "#87cefa" style.KoGa3_4_button_text.hover_color = "#0000cd" style.KoGa3_4_button_text.selected_color = "#87cefa" style.KoGa3_4_button_text.size = 23 style.KoGa3_4_button_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] style.KoGa3_5_button_text.font = "KoGa3.ttf" style.KoGa3_5_button_text.color = "#ffffff" style.KoGa3_5_button_text.hover_color = "#696969" style.KoGa3_5_button_text.selected_color = "#ffffff" style.KoGa3_5_button_text.size = 23 style.KoGa3_5_button_text.outlines = [ (absolute(2), "#000000", absolute(0), absolute(0)) ] default KoGa3_status_button_text = "KoGa3_5_button_text" default KoGa3ButtonTextSize = 30 default KoGa3ButtonTextSize1 = 23 #Button size in Mod menu for color buttons define KoGa3ModMenu_xsize1 = 500 define KoGa3ModMenu_xsize2 = 100 define KoGa3ModMenu_xsize3 = 110 define KoGa3ModMenu_xsize4 = 90 define KoGa3ModMenu_xsize5 = 575 define KoGa3ModMenu_xsize6 = 225 define KoGa3ModMenu_xsize7 = 150 define KoGa3Color1 = "#c4aead" define KoGa3Color2 = "#ffff00" define KoGa3Color3 = "#ffffff" #---------------------Blank screen---------------------# screen KoGa3ScreenBlank: add "/music/KoGa3MenuBack.png" modal True #---------------------Status screen---------------------# screen KoGa3ScreenStats(): zorder 100 hbox: xalign 1.0 yalign 0.0 if KoGa3ScreenStatsFull == 1: if KoGa3pts_auntStart == 1: textbutton ("[KoGa3GameProgress] "): text_style KoGa3_status_button_text selected True action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenJukebox") ] else: textbutton ("[KoGa3GameProgress] "): text_style KoGa3_status_button_text selected False action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] if KoGa3ChoiceOption == 1 and KoGa3ChoiceHintsOption == 0: textbutton _("WT: On "): text_style KoGa3_status_button_text selected False action [ SetVariable("KoGa3ChoiceView1", KoGa3ChoiceText1), SetVariable("KoGa3ChoiceView2", KoGa3ChoiceText2), SetVariable("KoGa3ChoiceHintsOption", 1), SetVariable("KoGa3ChoiceOption", 1) ] if KoGa3ChoiceOption == 1 and KoGa3ChoiceHintsOption == 1: textbutton _("WT: On+"): text_style KoGa3_status_button_text selected False action [ SetVariable("KoGa3ChoiceView1", KoGa3ChoiceTextOFF), SetVariable("KoGa3ChoiceView2", KoGa3ChoiceTextOFF), SetVariable("KoGa3ChoiceHintsOption", 0), SetVariable("KoGa3ChoiceOption", 0) ] if KoGa3ChoiceOption == 0 and KoGa3ChoiceHintsOption == 0: textbutton _("WT: Off "): text_style KoGa3_status_button_text selected False action [ SetVariable("KoGa3ChoiceView1", KoGa3ChoiceText1), SetVariable("KoGa3ChoiceView2", KoGa3ChoiceText2), SetVariable("KoGa3ChoiceHintsOption", 0), SetVariable("KoGa3ChoiceOption", 1) ] else: textbutton (" "): #not visible, but still can be used... text_style KoGa3_status_button_text selected False action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] if KoGa3ScreenStatsFull == 1: if KoGa3pts_momStart == 1: textbutton ("Charl.:[pts_mom] "): text_style KoGa3_status_button_text selected False action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] if KoGa3pts_ydStart == 1: textbutton ("[name_yd]:[pts_yd] "): text_style KoGa3_status_button_text selected False action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] if KoGa3pts_odStart == 1: textbutton ("[name_od]:[pts_od] "): text_style KoGa3_status_button_text selected False action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] if KoGa3pts_auntStart == 1: textbutton ("Lucy:[pts_aunt] "): text_style KoGa3_status_button_text selected False action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] if KoGa3ChoiceHintsOption == 1: if KoGa3ChoiceHints == 1: hbox: xalign 0.05 yalign 0.00 textbutton ("[KoGa3ChoiceHintsText]"): text_style "KoGa3_2_button_text" selected True action [ SetVariable ("pts_momTemp", pts_mom), SetVariable ("pts_ydTemp", pts_yd), SetVariable ("pts_odTemp", pts_od), SetVariable ("pts_auntTemp", pts_aunt), SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheatMore1") ] #---------------------Main Mod menu---------------------# screen KoGa3ScreenCheat: add "/music/KoGa3MenuBack.png" modal True vbox: xalign 0.5 spacing -6 null height (54) textbutton _("━━━━━━━━━━━━━━━━━━━━━ Mod menu ━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() textbutton _("Additional game settings..."): text_style "KoGa3_1_button_text" selected False sensitive True action [ Hide("KoGa3ScreenCheat"), Show("KoGa3GameSettings") ] textbutton _("━━━━━━━━━━━━━━━━━━━━━━━ Cheat ━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton _("{color=[KoGa3Color1]}LovePoints Mom \"Charlotte\":{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton ("{color=[KoGa3Color2]}[pts_mom]{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() if KoGa3pts_momStart == 1: hbox: xsize KoGa3ModMenu_xsize3 textbutton ("+1"): text_style "KoGa3_1_button_text" action SetVariable("pts_mom", pts_mom +1) hbox: xsize KoGa3ModMenu_xsize3 textbutton ("-1"): text_style "KoGa3_1_button_text" action SetVariable("pts_mom", pts_mom -1) hbox: xsize KoGa3ModMenu_xsize4 if pts_mom != pts_momTemp: textbutton _("Reset"): text_style "KoGa3_1_button_text" action SetVariable("pts_mom", pts_momTemp) else: textbutton _("n/a"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton _("{color=[KoGa3Color1]}LovePoints Daugter \"Emma\":{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton ("{color=[KoGa3Color2]}[pts_yd]{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() if KoGa3pts_ydStart == 1: hbox: xsize KoGa3ModMenu_xsize3 textbutton ("+1"): text_style "KoGa3_1_button_text" action SetVariable("pts_yd", pts_yd +1) hbox: xsize KoGa3ModMenu_xsize3 textbutton ("-1"): text_style "KoGa3_1_button_text" action SetVariable("pts_yd", pts_yd -1) hbox: xsize KoGa3ModMenu_xsize4 if pts_yd != pts_ydTemp: textbutton _("Reset"): text_style "KoGa3_1_button_text" action SetVariable("pts_yd", pts_ydTemp) else: textbutton _("n/a"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton _("{color=[KoGa3Color1]}LovePoints Daugter \"Suzi\":{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton ("{color=[KoGa3Color2]}[pts_od]{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() if KoGa3pts_odStart == 1: hbox: xsize KoGa3ModMenu_xsize3 textbutton ("+1"): text_style "KoGa3_1_button_text" action SetVariable("pts_od", pts_od +1) hbox: xsize KoGa3ModMenu_xsize3 textbutton ("-1"): text_style "KoGa3_1_button_text" action SetVariable("pts_od", pts_od -1) hbox: xsize KoGa3ModMenu_xsize4 if pts_od != pts_odTemp: textbutton _("Reset"): text_style "KoGa3_1_button_text" action SetVariable("pts_od", pts_odTemp) else: textbutton _("n/a"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton _("{color=[KoGa3Color1]}LovePoints Aunt \"Lucy\":{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton ("{color=[KoGa3Color2]}[pts_aunt]{/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() if KoGa3pts_auntStart == 1: hbox: xsize KoGa3ModMenu_xsize3 textbutton ("+1"): text_style "KoGa3_1_button_text" action SetVariable("pts_aunt", pts_aunt +1) hbox: xsize KoGa3ModMenu_xsize3 textbutton ("-1"): text_style "KoGa3_1_button_text" action SetVariable("pts_aunt", pts_aunt -1) hbox: xsize KoGa3ModMenu_xsize4 if pts_aunt != pts_auntTemp: textbutton _("Reset"): text_style "KoGa3_1_button_text" action SetVariable("pts_aunt", pts_auntTemp) else: textbutton _("n/a"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() textbutton ("────────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if KoGa3ScreenStatsFull == 1: hbox: spacing 8 textbutton _("Status infos: {color=[KoGa3Color2]}ON{/color}"): text_style "KoGa3_1_button_text" action [ SetVariable("KoGa3ScreenStatsFull", 0) ] textbutton ("{color=[KoGa3Color1]} / color: {/color}"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() textbutton _("{size=30}red{/size}"): text_style "KoGa3_2_button_text" action SetVariable("KoGa3_status_button_text", "KoGa3_2_button_text") textbutton _("{size=30}green{/size}"): text_style "KoGa3_3_button_text" action SetVariable("KoGa3_status_button_text", "KoGa3_3_button_text") textbutton _("{size=30}blue{/size}"): text_style "KoGa3_4_button_text" action SetVariable("KoGa3_status_button_text", "KoGa3_4_button_text") textbutton _("{size=30}gray{/size}"): text_style "KoGa3_5_button_text" action SetVariable("KoGa3_status_button_text", "KoGa3_5_button_text") if KoGa3ScreenStatsFull == 0: textbutton _("Status infos: {color=[KoGa3Color2]}OFF{/color}"): text_style "KoGa3_1_button_text" action [ Show("KoGa3ScreenStats"), SetVariable("KoGa3ScreenStatsFull", 1) ] textbutton _("Show/change game choices..."): text_style "KoGa3_1_button_text" action Hide("KoGa3ScreenCheat"), Show("KoGa3ScreenCheatMore1") if KoGa3ChoiceOption == 1 and KoGa3ChoiceHintsOption == 0: textbutton _("Game choices help (walkthrough): {color=[KoGa3Color2]}ON{/color}"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3ChoiceView1", KoGa3ChoiceText1), SetVariable("KoGa3ChoiceView2", KoGa3ChoiceText2), SetVariable("KoGa3ChoiceHintsOption", 1), SetVariable("KoGa3ChoiceOption", 1) ] if KoGa3ChoiceOption == 1 and KoGa3ChoiceHintsOption == 1: textbutton _("Game choices help (walkthrough): {color=[KoGa3Color2]}ON+ (with hints){/color}"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3ChoiceView1", KoGa3ChoiceTextOFF), SetVariable("KoGa3ChoiceView2", KoGa3ChoiceTextOFF), SetVariable("KoGa3ChoiceHintsOption", 0), SetVariable("KoGa3ChoiceOption", 0) ] if KoGa3ChoiceOption == 0: textbutton _("Game choices help (walkthrough): {color=[KoGa3Color2]}OFF{/color}"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3ChoiceView1", KoGa3ChoiceText1), SetVariable("KoGa3ChoiceView2", KoGa3ChoiceText2), SetVariable("KoGa3ChoiceHintsOption", 0), SetVariable("KoGa3ChoiceOption", 1) ] textbutton _("MC name change..."): text_style "KoGa3_1_button_text" action Hide("KoGa3ScreenCheat"), Call("KoGa3NameChange") textbutton _("━━━━━━━━━━━━━━━━━━━━━━━ Audio ━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if KoGa3Music == 1: textbutton _("Game music Mod: {color=[KoGa3Color2]}ON{/color}"): text_style "KoGa3_1_button_text" selected False action [ Stop ("music"), SetVariable("KoGa3Music", 0) ] if KoGa3Music == 0: textbutton _("Game music Mod: {color=[KoGa3Color2]}OFF{/color}"): text_style "KoGa3_1_button_text" selected False action [ Play("music", KoGa3CurrentMusic), SetVariable("KoGa3Music", 1) ] textbutton _("Music Jukebox..."): text_style "KoGa3_1_button_text" selected False sensitive True action [ Hide("KoGa3ScreenCheat"), Show("KoGa3ScreenJukebox") ] textbutton ("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() textbutton _("Close"): text_style "KoGa3_1_button_text" action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3ScreenCheat") ] #-----------------------Cheat more----------------------# screen KoGa3ScreenCheatMore1(): add "/music/KoGa3MenuBack.png" modal True vbox: xalign 0.5 spacing -6 null height (54) textbutton _("━━━━━━━━━━━━━━━━━━━━ Game choices ━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: spacing 25 textbutton _("{color=[KoGa3Color1]}Chapter:{/color}"): text_style "KoGa3_1_button_text" selected False sensitive False action NullAction() if KoGa3CheatChapterButton is 1: textbutton ("{color=[KoGa3Color2]}1-5{/color}"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("1-5"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 1) ] if KoGa3CheatChapterButton is 2: textbutton ("{color=[KoGa3Color2]}6-12{/color}"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("6-12"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 2) ] if KoGa3CheatChapterButton is 3: textbutton ("{color=[KoGa3Color2]}13-15{/color}"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("13-15"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 3) ] textbutton ("────────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() #EP1-5 if KoGa3CheatChapterButton is 1: hbox: textbutton ("{color=[KoGa3Color1]}EP2: \"mom_choice_00\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 #text_style "KoGa3_2_button_text" selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[mom_choice_00]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if mom_choice_00 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_00", 0) if mom_choice_00 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_00", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP3: \"yd_choice_00\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_00]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_00 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_00", 0) if yd_choice_00 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_00", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP3: \"mom_choice_01\":{/color}"): xsize KoGa3ModMenu_xsize5 text_style "KoGa3_1_button_text" selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[mom_choice_01]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if mom_choice_01 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_01", 0) if mom_choice_01 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_01", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP3: \"yd_choice_02\" / \"name1_yd\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_02] / [name1_yd]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_02 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action [ SetVariable("yd_choice_02", 0), SetVariable("name1_yd", "Miss Lloyd") ] if yd_choice_02 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action [ SetVariable("yd_choice_02", 1), SetVariable("name1_yd", name_yd) ] hbox: textbutton ("{color=[KoGa3Color1]}EP3: \"yd_choice_01\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_01]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_01 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_01", 0) if yd_choice_01 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_01", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP4: \"mom_choice_02\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[mom_choice_02]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if mom_choice_02 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_02", 0) if mom_choice_02 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_02", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP4: \"od_choice_00\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[od_choice_00]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if od_choice_00 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("od_choice_00", 0) if od_choice_00 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("od_choice_00", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP5: \"aunt_choice_00\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[aunt_choice_00]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if aunt_choice_00 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_00", 0) if aunt_choice_00 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_00", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP5: \"yd_choice_03\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_03]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_03 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_03", 0) if yd_choice_03 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_03", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP5: \"yd_choice_04\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_04]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_04 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_04", 0) if yd_choice_04 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_04", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP5: \"yd_choice_05\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_05]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_05 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_05", 0) if yd_choice_05 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_05", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP5: \"yd_choice_06\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_06]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_06 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_06", 0) if yd_choice_06 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_06", 1) #EP6-11 if KoGa3CheatChapterButton is 2: hbox: textbutton ("{color=[KoGa3Color1]}EP6: \"aunt_choice_01\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[aunt_choice_01]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if aunt_choice_01 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_01", 0) if aunt_choice_01 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_01", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP6: \"yd_choice_07\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_07]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_07 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_07", 0) if yd_choice_07 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_07", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP8: \"kay_choice_00\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[kay_choice_00]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if kay_choice_00 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("kay_choice_00", 0) if kay_choice_00 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("kay_choice_00", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP8: \"yd_choice_09\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_09]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_09 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_09", 0) if yd_choice_09 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_09", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP8: \"yd_choice_08\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[yd_choice_08]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if yd_choice_08 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_08", 0) if yd_choice_08 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("yd_choice_08", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP8: \"mom_choice_03\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[mom_choice_03]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if mom_choice_03 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_03", 0) if mom_choice_03 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_03", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP9: \"kay_choice_01\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[kay_choice_01]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if kay_choice_01 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("kay_choice_01", 0) if kay_choice_01 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("kay_choice_01", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP11: \"aunt_choice_02\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[aunt_choice_02]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if aunt_choice_02 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_02", 0) if aunt_choice_02 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_02", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP11: \"od_choice_01\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[od_choice_01]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if od_choice_01 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("od_choice_01", 0) if od_choice_01 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("od_choice_01", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP12: \"aunt_choice_03\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[aunt_choice_03]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if aunt_choice_03 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_03", 0) if aunt_choice_03 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("aunt_choice_03", 1) if KoGa3GameProgress2 < 13: hbox: textbutton ("{color=[KoGa3Color1]}EP12: \"mom_choice_04\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[mom_choice_04]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if mom_choice_04 == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_04", 0) if mom_choice_04 == 0: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_04", 1) else: hbox: textbutton ("{color=[KoGa3Color1]}EP12: \"mom_choice_04\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[mom_choice_04]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if mom_choice_04 == True: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_04", False) if mom_choice_04 == False: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("mom_choice_04", True) #EP13-14 if KoGa3CheatChapterButton is 3: hbox: textbutton ("{color=[KoGa3Color1]}EP13: \"charlotte_return_hug\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[charlotte_return_hug]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if charlotte_return_hug == True: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("charlotte_return_hug", False) if charlotte_return_hug == False: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("charlotte_return_hug", True) hbox: textbutton ("{color=[KoGa3Color1]}EP13: \"emma_dreams_mc\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[emma_dreams_mc]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if emma_dreams_mc == True: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("emma_dreams_mc", False) if emma_dreams_mc == False: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("emma_dreams_mc", True) hbox: textbutton ("{color=[KoGa3Color1]}EP13: \"kaylah_lingerie_choice\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[kaylah_lingerie_choice]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if kaylah_lingerie_choice == 0 or kaylah_lingerie_choice == 1: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("kaylah_lingerie_choice", 2) if kaylah_lingerie_choice == 2: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("kaylah_lingerie_choice", 3) if kaylah_lingerie_choice == 3: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("kaylah_lingerie_choice", 1) hbox: textbutton ("{color=[KoGa3Color1]}EP14: \"fox_relationship\":{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize5 selected False sensitive False action NullAction() textbutton ("{color=[KoGa3Color2]}[fox_relationship]{/color}"): text_style "KoGa3_1_button_text" xsize KoGa3ModMenu_xsize6 selected True sensitive False action NullAction() if fox_relationship == True: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("fox_relationship", False) if fox_relationship == False: hbox: xsize KoGa3ModMenu_xsize7 textbutton _("change"): text_style "KoGa3_1_button_text" action SetVariable("fox_relationship", True) textbutton ("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: spacing 50 textbutton _("Back"): text_style "KoGa3_1_button_text" sensitive True action [ Hide("KoGa3ScreenCheatMore1"), Show("KoGa3ScreenCheat") ] textbutton _("Close"): text_style "KoGa3_1_button_text" sensitive True action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3ScreenCheatMore1") ] #-----------------------Jukebox----------------------# screen KoGa3ScreenJukebox: default soundis = False default p = None add "/music/KoGa3MenuBack.png" modal True vbox: xalign 0.5 spacing -6 null height (54) hbox: timer .1 repeat True action SetScreenVariable("p",p) $ KoGa3CurrentMusicName = renpy.music.get_playing(channel='music') if isinstance(renpy.music.is_playing(channel='music'), int): if renpy.music.get_pos(channel='music'): textbutton ("━━━━━━━━━━━━━━━━━━━━━━ Jukebox ━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() $ p = renpy.music.get_pos(channel='music') $ p_variable = " {} / {}".format(convert_float_into_time(renpy.music.get_pos(channel='music')), convert_float_into_time(renpy.music.get_duration(channel='music'))) textbutton ("[p_variable]"): text_style "KoGa3_1_button_text" sensitive False action NullAction() else: textbutton ("━━━━━━━━━━━━━━━━━━━━━━ Jukebox ━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: spacing 25 textbutton _("Music tracks:"): text_style "KoGa3_1_button_text" selected False sensitive False action NullAction() if KoGa3JukeboxButton is 1: textbutton ("1-15"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("1-15"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3JukeboxButton", 1) ] if KoGa3JukeboxButton is 2: textbutton ("16-30"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("16-30"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3JukeboxButton", 2) ] if KoGa3JukeboxButton is 3: textbutton ("31-45"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("31-45"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3JukeboxButton", 3) ] # if KoGa3JukeboxButton is 4: # textbutton ("46-xx"): # text_style "KoGa3_1_button_text" # selected True # action NullAction() # else: # textbutton ("46-xx"): # text_style "KoGa3_1_button_text" # selected False # action [ # SetVariable("KoGa3JukeboxButton", 4) ] textbutton ("────────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: hbox: xsize 10 textbutton (""): text_style "KoGa3_1_button_text" sensitive False action NullAction() vbox: spacing -10 #Mod music 01-15 if KoGa3JukeboxButton is 1: textbutton _("Almost Evil.mp3 (Fight Theme 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicFight1), Play("music", "/music/Almost Evil.mp3") ] textbutton _("Assassins.mp3 (Serious Theme 4 - Suzi)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious4), Play("music", "/music/Assassins.mp3") ] textbutton _("Back to the Future.mp3 (Home Theme 5)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicHome5), Play("music", "/music/Back to the Future.mp3") ] textbutton _("Background Music for Docus.mp3 (Home theme 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicHome2), Play("music", "/music/Background Music for Docus.mp3") ] textbutton _("Business.mp3 (MC Theme 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC1), Play("music", "/music/Business.mp3") ] textbutton _("Cinematic-Ambient.mp3 (Serious Theme 3)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious3), Play("music", "/music/Cinematic-Ambient.mp3") ] textbutton _("Dark Suspense.mp3 (Serious Theme 12)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious12), Play("music", "/music/Dark Suspense.mp3") ] textbutton _("Device.mp3 (Energetic Theme 1 - Catwalk)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicEnergetic1), Play("music", "/music/Device.mp3") ] textbutton _("dirt-rhodes.mp3 (Sexy 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy1), Play("music", "/music/dirt-rhodes.mp3") ] textbutton _("DocuCineAtmosphere.mp3 (Serious theme 14)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious14), Play("music", "/music/DocuCineAtmosphere.mp3") ] textbutton _("Documentary Cinematic.mp3 (MC theme 3)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC3), Play("music", "/music/Documentary Cinematic.mp3") ] textbutton _("Documentary2.mp3 (Serious theme 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious2), Play("music", "/music/Documentary2.mp3") ] textbutton _("Documentary3.mp3 (MC theme 5)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC5), Play("music", "/music/Documentary3.mp3") ] textbutton _("Drone Flight2.mp3 (Serious Theme 10)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious10), Play("music", "/music/Drone Flight2.mp3") ] textbutton _("Elysium.mp3 (Serious theme 16)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious16), Play("music", "/music/Elysium.mp3") ] #Mod music 16-30 if KoGa3JukeboxButton is 2: textbutton _("Groove Day.mp3 (Zak theme 1 / Sexy theme 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicZak1), Play("music", "/music/Groove Day.mp3") ] textbutton _("Hi-Tech Corporate.mp3 (Suzi theme 1 / Lucy theme 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSuzi1/MusicLucy2), Play("music", "/music/Hi-Tech Corporate.mp3") ] textbutton _("Horizon.mp3 (Emma theme 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicEmma1), Play("music", "/music/Horizon.mp3") ] textbutton _("Inspiring ABM_2.mp3 (Shopping theme 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicShopping1), Play("music", "/music/Inspiring ABM_2.mp3") ] textbutton _("Knocking.mp3 (Serious theme 6)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious6), Play("music", "/music/Knocking.mp3") ] textbutton _("Lifelike.mp3 (Sexy theme 6)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy6), Play("music", "/music/Lifelike.mp3") ] textbutton _("Lifted.mp3 (Sexy theme 4)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy4), Play("music", "/music/Lifted.mp3") ] textbutton _("Loys - Just a Dream.mp3 (Main menu theme)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMainMenu), Play("music", "/music/Loys - Just a Dream.mp3") ] textbutton _("Magnetic.mp3 (Serious theme 7)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious7), Play("music", "/music/Magnetic.mp3") ] textbutton _("Minimal Corporate Ambient.mp3 (Home theme 4)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicHome4), Play("music", "/music/Minimal Corporate Ambient.mp3") ] textbutton _("Mysterious Ambient.mp3 (Serious theme 15)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious15), Play("music", "/music/Mysterious Ambient.mp3") ] textbutton _("No Time To Lose.mp3 (Lucy theme 3)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicLucy3), Play("music", "/music/No Time To Lose.mp3") ] textbutton _("On Distance.mp3 (MC theme 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC2), Play("music", "/music/On Distance.mp3") ] textbutton _("positive-advertising.mp3 (Home theme 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicHome1), Play("music", "/music/positive-advertising.mp3") ] textbutton _("Pyrosion - Gazer.mp3 (Serious theme 9)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious9), Play("music", "/music/Pyrosion - Gazer.mp3") ] #Mod music 31-45 if KoGa3JukeboxButton is 3 or KoGa3JukeboxButton is 4: textbutton _("Quickly.mp3 (Zak theme 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicZak2), Play("music", "/music/Quickly.mp3") ] textbutton _("Reborn.mp3 (Sexy theme 7)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy7), Play("music", "/music/Reborn.mp3") ] textbutton _("Reflect_lv.mp3 (Kaylah theme 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicKaylah1), Play("music", "/music/Reflect_lv.mp3") ] textbutton _("Road-to-hell.mp3 (Serious theme 1 - Stalker)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious1), Play("music", "/music/Road-to-hell.mp3") ] textbutton _("Sexy Time.mp3 (Sexy theme 3)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy3), Play("music", "/music/Sexy Time.mp3") ] textbutton _("space-trip.mp3 (Sexy theme 5)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy5), Play("music", "/music/space-trip.mp3") ] textbutton _("StealthMusic_ Assault.mp3 (Serious theme 8)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious8), Play("music", "/music/StealthMusic_ Assault.mp3") ] textbutton _("Talk-dirty.mp3 (Energetic theme 4)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicEnergetic4), Play("music", "/music/Talk-dirty.mp3") ] textbutton _("Tension.mp3 (Serious theme 13)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious13), Play("music", "/music/Tension.mp3") ] textbutton _("Thin Ice-V3.mp3 (Photo shooting 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicShooting1), Play("music", "/music/Thin Ice-V3.mp3") ] textbutton _("The High Line.mp3 (Serious theme 11)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious11), Play("music", "/music/The High Line.mp3") ] textbutton _("Tropical Vibe.mp3 (Lucy theme 1)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicLucy1), Play("music", "/music/Tropical Vibe.mp3") ] textbutton _("Uplifting Acoustic.mp3 (Home theme 3)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicHome3), Play("music", "/music/Uplifting Acoustic.mp3") ] textbutton _("Winding Road by Pyrosion.mp3 (Photo shooting 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicShooting2), Play("music", "/music/Winding Road by Pyrosion.mp3") ] textbutton _("Windscale-Chernobyl.mp3 (Energetic theme 2)"): text_style "KoGa3_1a_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicEnergetic2), Play("music", "/music/Windscale-Chernobyl.mp3") ] textbutton ("────────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: spacing 30 textbutton _("Pause music"): text_style "KoGa3_1_button_text" sensitive True action PauseAudio('music', value="toggle") if KoGa3MainMenu == 1: if KoGa3CurrentMusicName == KoGa3CurrentMusic: textbutton (""): text_style "KoGa3_1_button_text" sensitive True action [ Play("music", MusicMainMenu) ] else: textbutton _("back to the menu title"): text_style "KoGa3_1_button_text" sensitive True action [ Play("music", MusicMainMenu) ] if KoGa3MainMenu == 0: if KoGa3CurrentMusicName == KoGa3CurrentMusic: textbutton (""): text_style "KoGa3_1_button_text" sensitive True action [ Play("music", KoGa3CurrentMusic) ] else: textbutton _("back to the game title"): text_style "KoGa3_1_button_text" sensitive True action [ Play("music", KoGa3CurrentMusic) ] textbutton ("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if KoGa3MainMenu == 1: textbutton _("Back"): text_style "KoGa3_1_button_text" sensitive True selected False action [ SetVariable("KoGa3MainMenu", 0), SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3ScreenJukebox") ] else: hbox: spacing 50 textbutton _("Back"): text_style "KoGa3_1_button_text" sensitive True selected False action [ Hide("KoGa3ScreenJukebox"), Show("KoGa3ScreenCheat") ] textbutton _("Close"): text_style "KoGa3_1_button_text" sensitive True selected False action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3ScreenJukebox") ] #-----------------------set MC name----------------------# label KoGa3NameChange: menu: "MC name: [name] ": $ name = renpy.input("What is your first name?", default=name) $ persistent.nameRePlay = name $ renpy.save_persistent() jump KoGa3NameChange "Back": show screen KoGa3ScreenCheat pause return #----------------for saves without my Mod-----------------# label KoGa3ActivateModScreen: "It seems you have loaded a save without my Mod" "Now trying to load some Mod configurations..." $ KoGa3GameProgress = "EP.." $ KoGa3pts_auntStart = 1 $ KoGa3pts_momStart = 1 $ KoGa3pts_ydStart = 1 $ KoGa3pts_odStart = 1 $ KoGa3MusicModStart = 1 show screen KoGa3ScreenStats "Two Mod functions are only working when progressing the game:" "1. The Mod music appears at the next ingame music change." "2. The info \"EP..\" changes when passing the next game episode." "That's (hopefully) all for now, enjoy the game / KoGa3" return #---------------------add. game settings---------------------# screen KoGa3GameSettings: add "/music/KoGa3MenuBack_settings.png" modal True vbox: xalign 0.5 spacing -12 null height (55) #if _menu: textbutton _("━━━━━━━━━━━━━━━ Mod settings ━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() null height (35) ################################################################################# hbox: hbox: xsize 50 if KoGa3DialogOptions == 0: textbutton _("+"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3DialogOptions", 1), SetVariable("KoGa3ChoiceOptions", 0), SetVariable("KoGa3QuickMenuOptions", 0) ] if KoGa3DialogOptions == 1: textbutton _("─"): text_style "KoGa3_1a_button_text" selected False action SetVariable("KoGa3DialogOptions", 0) hbox: ####################################### $ KoGa3TextboxOpacityPercent = int(persistent.KoGa3TextboxOpacity * 100) if persistent.KoGa3TextboxOpacity == KoGa3TextboxOpacitydefault and persistent.pref_text_size == pref_text_sizedefault and persistent.KoGa3xposOffset == KoGa3xposOffsetdefault and persistent.KoGa3yposOffset == KoGa3yposOffsetdefault and persistent.KoGa3TextOutline1 == KoGa3TextOutline1default and persistent.KoGa3TextOutline2 == KoGa3TextOutline2default and persistent.KoGa3TextOutline3 == KoGa3TextOutline3default: textbutton _("{color=[KoGa3Color1]}──────────── Dialog settings ──────────────"): text_style "KoGa3_1_button_text" if KoGa3DialogOptions == 0: action [ SetVariable("KoGa3DialogOptions", 1), SetVariable("KoGa3ChoiceOptions", 0), SetVariable("KoGa3QuickMenuOptions", 0) ] if KoGa3DialogOptions == 1: action SetVariable("KoGa3DialogOptions", 0) else: hbox: textbutton _("{color=[KoGa3Color1]}──────────── Dialog settings ──────"): text_style "KoGa3_1_button_text" if KoGa3DialogOptions == 0: action [ SetVariable("KoGa3DialogOptions", 1), SetVariable("KoGa3ChoiceOptions", 0), SetVariable("KoGa3QuickMenuOptions", 0) ] if KoGa3DialogOptions == 1: action SetVariable("KoGa3DialogOptions", 0) textbutton _("(reset)"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3TextboxOpacity", KoGa3TextboxOpacitydefault), SetVariable("persistent.pref_text_size", pref_text_sizedefault), SetVariable("persistent.KoGa3xposOffset", KoGa3xposOffsetdefault), SetVariable("persistent.KoGa3yposOffset", KoGa3yposOffsetdefault), SetVariable("persistent.KoGa3TextOutline1", KoGa3TextOutline1default), SetVariable("persistent.KoGa3TextOutline2", KoGa3TextOutline2default), SetVariable("persistent.KoGa3TextOutline3", KoGa3TextOutline3default), SetVariable("persistent.KoGa3DialogOptions", 1), SetVariable("persistent.KoGa3QuickMenuButton", 1), SetVariable("persistent.KoGa3QuickMenuShow", 1)] ################################################################################# if KoGa3DialogOptions == 1: hbox: hbox: xsize 50 hbox: vbox: spacing -8 hbox: text _("Dialogue box opacity (current: [KoGa3TextboxOpacityPercent]%)"): style "KoGa3_1a_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(persistent, "KoGa3TextboxOpacity", range=1.0, style="slider") null height (25) hbox: text _("Dialogue box horizontal size offset (current: [persistent.KoGa3xposOffset])"): style "KoGa3_1a_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(object=persistent, field='KoGa3xposOffset', range=600, max_is_zero=False, style=u'slider', offset=-300, step=1) hbox: text _("Dialogue box vertical offset (current: [persistent.KoGa3yposOffset])"): style "KoGa3_1a_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(object=persistent, field='KoGa3yposOffset', range=500, max_is_zero=False, style=u'slider', offset=-200, step=1) null height (25) hbox: text _("Dialogue text font size (current: [persistent.pref_text_size]/75)"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(object=persistent, field='pref_text_size', range=75, max_is_zero=False, style=u'slider', offset=0, step=1) hbox: text _("Dialogue text font outline (current: [persistent.KoGa3TextOutline1]/10)"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(persistent, "KoGa3TextOutline1", range=10, style="slider") hbox: hbox: text _(" offset horizontal ([persistent.KoGa3TextOutline2]) offset vertical ([persistent.KoGa3TextOutline3])"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 335 value FieldValue(persistent, "KoGa3TextOutline2", range=10, max_is_zero=False, style=u'slider', offset=-5, step=1) textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 335 value FieldValue(persistent, "KoGa3TextOutline3", range=10, max_is_zero=False, style=u'slider', offset=-5, step=1) null height (25) ################################################################################# hbox: hbox: xsize 50 if KoGa3ChoiceOptions == 0: textbutton _("+"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3DialogOptions", 0), SetVariable("KoGa3ChoiceOptions", 1), SetVariable("KoGa3QuickMenuOptions", 0) ] if KoGa3ChoiceOptions == 1: textbutton _("─"): text_style "KoGa3_1a_button_text" selected False action SetVariable("KoGa3ChoiceOptions", 0) hbox: ####################################### if persistent.KoGa3ChoiceTextSize == KoGa3ChoiceTextSizedefault and persistent.KoGa3TextOutline7 == KoGa3TextOutline7default and persistent.KoGa3TextOutline8 == KoGa3TextOutline8default and persistent.KoGa3TextOutline9 == KoGa3TextOutline9default and persistent.KoGa3ChoiceYpos == KoGa3ChoiceYposdefault: textbutton _("{color=[KoGa3Color1]}──────────── Choice settings ──────────────"): text_style "KoGa3_1_button_text" if KoGa3ChoiceOptions == 0: action [ SetVariable("KoGa3DialogOptions", 0), SetVariable("KoGa3ChoiceOptions", 1), SetVariable("KoGa3QuickMenuOptions", 0) ] if KoGa3ChoiceOptions == 1: action SetVariable("KoGa3ChoiceOptions", 0) else: hbox: textbutton _("{color=[KoGa3Color1]}──────────── Choice settings ──────"): text_style "KoGa3_1_button_text" if KoGa3ChoiceOptions == 0: action [ SetVariable("KoGa3DialogOptions", 0), SetVariable("KoGa3ChoiceOptions", 1), SetVariable("KoGa3QuickMenuOptions", 0) ] if KoGa3ChoiceOptions == 1: action SetVariable("KoGa3ChoiceOptions", 0) textbutton _("(reset)"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3ChoiceTextSize", KoGa3ChoiceTextSizedefault), SetVariable("persistent.KoGa3TextOutline7", KoGa3TextOutline7default), SetVariable("persistent.KoGa3TextOutline8", KoGa3TextOutline8default), SetVariable("persistent.KoGa3TextOutline9", KoGa3TextOutline9default), SetVariable("persistent.KoGa3ChoiceYpos", KoGa3ChoiceYposdefault) ] ################################################################################# if KoGa3ChoiceOptions == 1: hbox: hbox: xsize 50 hbox: vbox: spacing 0 hbox: text _("Choice box vertical offset (current: [persistent.KoGa3ChoiceYpos])"): style "KoGa3_1a_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(object=persistent, field='KoGa3ChoiceYpos', range=1080, max_is_zero=False, style=u'slider', offset=-250, step=1) hbox: text _("Choice text font size (current: [persistent.KoGa3ChoiceTextSize]/75)"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(object=persistent, field='KoGa3ChoiceTextSize', range=75, max_is_zero=False, style=u'slider', offset=0, step=1) hbox: text _("Choice text font outline (current: [persistent.KoGa3TextOutline7]/10)"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 700 value FieldValue(persistent, "KoGa3TextOutline7", range=10, style="slider") hbox: hbox: text _(" offset horizontal ([persistent.KoGa3TextOutline8]) offset vertical ([persistent.KoGa3TextOutline9])"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 335 value FieldValue(persistent, "KoGa3TextOutline8", range=10, max_is_zero=False, style=u'slider', offset=-5, step=1) textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 335 value FieldValue(persistent, "KoGa3TextOutline9", range=10, max_is_zero=False, style=u'slider', offset=-5, step=1) null height (25) ################################################################################# hbox: hbox: xsize 50 if KoGa3QuickMenuOptions == 0: textbutton _("+"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3DialogOptions", 0), SetVariable("KoGa3ChoiceOptions", 0), SetVariable("KoGa3QuickMenuOptions", 1) ] if KoGa3QuickMenuOptions == 1: textbutton _("─"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3QuickMenuOptions", 0) ] hbox: if KoGa3QuickMenuOptions == 0: textbutton _("{color=[KoGa3Color1]}────────── Quick menu settings ────────────"): text_style "KoGa3_1_button_text" action [ SetVariable("KoGa3DialogOptions", 0), SetVariable("KoGa3ChoiceOptions", 0), SetVariable("KoGa3QuickMenuOptions", 1) ] if KoGa3QuickMenuOptions == 1: textbutton _("{color=[KoGa3Color1]}────────── Quick menu settings ────────────"): text_style "KoGa3_1_button_text" action [ SetVariable("KoGa3QuickMenuOptions", 0) ] ################################################################################# if KoGa3QuickMenuOptions == 1: hbox: hbox: xsize 50 hbox: vbox: hbox: hbox: xsize 300 text _("Quick menu: "): style "KoGa3_1a_text" hbox: xsize 150 if persistent.KoGa3QuickMenuButton == 1: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected True action NullAction() else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3QuickMenuButton", 1), SetVariable("persistent.KoGa3QuickMenuShow", 1) ] if renpy.variant("pc") or (renpy.variant("web") and not renpy.variant("mobile")): hbox: xsize 150 if persistent.KoGa3QuickMenuButton == 2: textbutton _("Auto"): text_style "KoGa3_1a_button_text" selected True action NullAction() else: textbutton _("Auto"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3QuickMenuButton", 2), SetVariable("persistent.KoGa3QuickMenuShow", 0) ] hbox: if persistent.KoGa3QuickMenuButton == 0: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected True action NullAction() else: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3QuickMenuButton", 0), SetVariable("persistent.KoGa3QuickMenuShow", 0) ] textbutton _("More Quick menu settings..."): text_style "KoGa3_1a_button_text" selected False sensitive True action [ Hide("KoGa3GameSettings"), Show("KoGa3GameSettingsQuickMenu") ] textbutton ("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if main_menu is True or KoGa3ModMenuButtonPressed is False: hbox: spacing 30 textbutton _("Back"): text_style "KoGa3_1_button_text" selected False sensitive True action [ Hide("KoGa3GameSettings"), Hide("KoGa3ScreenBlank") ] else: hbox: spacing 30 textbutton _("Back"): text_style "KoGa3_1_button_text" selected False sensitive True action [ Hide("KoGa3GameSettings"), Hide("KoGa3ScreenBlank"), Show("KoGa3ScreenCheat") ] textbutton _("Close"): text_style "KoGa3_1_button_text" selected False sensitive True action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3GameSettings"), Hide("KoGa3ScreenBlank") ] #---------------------add. game settings Quick Menu---------------------# screen KoGa3GameSettingsQuickMenu: if not main_menu: add "/music/KoGa3MenuBack_settings.png" modal True vbox: xalign 0.5 spacing -12 null height (55) if persistent.KoGa3TextOutline4 == KoGa3TextOutline4default and persistent.KoGa3TextOutline5 == KoGa3TextOutline5default and persistent.KoGa3TextOutline6 == KoGa3TextOutline6default and persistent.KoGa3QuickMenuTextSize == KoGa3QuickMenuTextSizedefault: textbutton _("━━━━━━━━━━ More Quick menu settings ━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() else: hbox: textbutton _("━━━━━━━━━━ More Quick menu settings ━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() textbutton _("(reset)"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("persistent.KoGa3TextOutline4", KoGa3TextOutline4default), SetVariable("persistent.KoGa3TextOutline5", KoGa3TextOutline5default), SetVariable("persistent.KoGa3TextOutline6", KoGa3TextOutline6default), SetVariable("persistent.KoGa3QuickMenuTextSize", KoGa3QuickMenuTextSizedefault) ] hbox: hbox: xsize 300 text _("Quick menu: "): style "KoGa3_1a_text" hbox: xsize 150 if persistent.KoGa3QuickMenuButton == 1: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected True action NullAction() else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3QuickMenuButton", 1), SetVariable("persistent.KoGa3QuickMenuShow", 1) ] if renpy.variant("pc") or (renpy.variant("web") and not renpy.variant("mobile")): hbox: xsize 150 if persistent.KoGa3QuickMenuButton == 2: textbutton _("Auto"): text_style "KoGa3_1a_button_text" selected True action NullAction() else: textbutton _("Auto"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3QuickMenuButton", 2), SetVariable("persistent.KoGa3QuickMenuShow", 0) ] hbox: if persistent.KoGa3QuickMenuButton == 0: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected True action NullAction() else: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("persistent.KoGa3QuickMenuButton", 0), SetVariable("persistent.KoGa3QuickMenuShow", 0) ] textbutton _("───────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() null height (20) vbox: spacing -8 hbox: text _("Quick menu text font size (current: [persistent.KoGa3QuickMenuTextSize]/40)"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 750 value FieldValue(object=persistent, field='KoGa3QuickMenuTextSize', range=40, max_is_zero=False, style=u'slider', offset=0, step=1) hbox: text _("Quick menu text font outline (current: [persistent.KoGa3TextOutline4]/10)"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 750 value FieldValue(object=persistent, field='KoGa3TextOutline4', range=10, max_is_zero=False, style=u'slider', offset=0, step=1) hbox: hbox: text _(" offset horizontal ([persistent.KoGa3TextOutline5]) offset vertical ([persistent.KoGa3TextOutline6])"): style "KoGa3_1a_button_text" hbox: ypos 5 textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 360 value FieldValue(object=persistent, field='KoGa3TextOutline5', range=10, max_is_zero=False, style=u'slider', offset=-5, step=1) textbutton _(" "): text_style "KoGa3_1a_button_text" sensitive False action NullAction() bar: xsize 360 value FieldValue(object=persistent, field='KoGa3TextOutline6', range=10, max_is_zero=False, style=u'slider', offset=-5, step=1) null height (34) hbox: hbox: xsize 50 if KoGa3QuickMenuItems == 0: textbutton _("+"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3QuickMenuItems", 1) ] if KoGa3QuickMenuItems == 1: textbutton _("─"): text_style "KoGa3_1a_button_text" selected False action SetVariable("KoGa3QuickMenuItems", 0) hbox: textbutton _("────────── Quick menu items ─────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if KoGa3QuickMenuItems == 1: hbox: hbox: xsize 50 textbutton _(" "): text_style "KoGa3_1_button_text" sensitive False action NullAction() vbox: spacing -10 hbox: hbox: xsize 550 textbutton ("Button \"Back\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemBack == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemBack", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemBack", False) hbox: hbox: xsize 550 textbutton ("Button \"Hist\" (History) is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemHist == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemHist", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemHist", False) hbox: hbox: xsize 550 textbutton ("Button \"Hide\" (hide textbox) is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemHide == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemHide", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemHide", False) hbox: hbox: xsize 550 textbutton ("Button \"Skip\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemSkip == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemSkip", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemSkip", False) hbox: hbox: xsize 550 textbutton ("Button \"Auto\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemAuto == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemAuto", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemAuto", False) hbox: hbox: xsize 550 textbutton ("Button \"Save\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemSave == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemSave", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemSave", False) hbox: hbox: xsize 550 textbutton ("Button \"Load\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemLoad == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemLoad", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemLoad", False) hbox: hbox: xsize 550 textbutton ("Button \"Q.Save\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemQSave == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemQSave", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemQSave", False) hbox: hbox: xsize 550 textbutton ("Button \"Q.Load\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemQLoad == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemQLoad", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemQLoad", False) hbox: hbox: xsize 550 textbutton ("Button \"Prefs\" (game settings) is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemPrefs == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemPrefs", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemPrefs", False) hbox: hbox: xsize 550 textbutton ("Button \"Mod menu\" is:"): text_style "KoGa3_1a_button_text" sensitive False action NullAction() hbox: xsize 200 if persistent.KoGa3QuickMenuItemModmenu == False: textbutton _("OFF"): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemModmenu", True) else: textbutton _("ON "): text_style "KoGa3_1a_button_text" selected False action SetVariable ("persistent.KoGa3QuickMenuItemModmenu", False) textbutton ("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: spacing 30 textbutton _("Back"): text_style "KoGa3_1_button_text" selected False sensitive True action [ Hide("KoGa3GameSettingsQuickMenu"), # Hide("KoGa3ScreenBlank"), Show("KoGa3GameSettings") ] textbutton _("Close"): text_style "KoGa3_1_button_text" selected False sensitive True action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3ScreenBlank"), Hide("KoGa3ScreenCheat"), Hide("KoGa3ScreenCheatMore1"), Hide("KoGa3ScreenModMenu"), Hide("KoGa3ScreenJukebox"), Hide("KoGa3GameSettings"), Hide("KoGa3GameSettingsQuickMenu"), Hide("KoGa3ScreenAudioMenu") ] #-------------------------music--------------------------# define MusicMainMenu = "/music/Loys - Just a Dream.mp3" define MusicHome1 = "/music/positive-advertising.mp3" define MusicHome2 = "/music/Background Music for Docus.mp3" define MusicHome2a = "/music/Background Music for Docus_cut.mp3" define MusicHome3 = "/music/Uplifting Acoustic.mp3" define MusicHome4 = "/music/Minimal Corporate Ambient.mp3" #new with v0.9 define MusicHome5 = "/music/Back to the Future.mp3" #new with v0.10 define MusicShopping1 = "/music/Inspiring ABM_2.mp3" define MusicSpa1 = "/music/Inspiring ABM_2.mp3" define MusicShooting1 = "/music/Thin Ice-V3.mp3" define MusicSpa2 = "/music/Thin Ice-V3.mp3" define MusicShooting2 = "/music/Winding Road by Pyrosion.mp3" define MusicMC1 = "/music/Business.mp3" define MusicMC2 = "/music/On Distance.mp3" define MusicMC3 = "/music/Documentary Cinematic.mp3" define MusicMC4 = "/music/Thin Ice-V3.mp3" #also MusicShooting1 define MusicMC5 = "/music/Documentary3.mp3" #new with v0.13 define MusicLucy1 = "/music/Tropical Vibe.mp3" define MusicLucy2 = "/music/Hi-Tech Corporate.mp3" define MusicLucy3 = "/music/No Time To Lose.mp3" #new with v0.8 define MusicSuzi1 = "/music/Hi-Tech Corporate.mp3" define MusicEmma1 = "/music/Horizon.mp3" define MusicZak1 = "/music/Groove Day.mp3" #new with v0.8 / also MusicSexy2 define MusicZak2 = "/music/Quickly.mp3" #new with v0.9 / also MusicValentini1 define MusicValentini1 = "/music/Quickly.mp3" #new with v0.13 / also MusicZak2 define MusicKaylah1 = "/music/Reflect_lv.mp3" #new with v0.9 define MusicSerious1 = "/music/Road-to-hell.mp3" define MusicSerious1a = "/music/Road-to-hell_cut.mp3" define MusicSerious2 = "/music/Documentary2.mp3" define MusicSerious3 = "/music/Cinematic-Ambient.mp3" define MusicSerious4 = "/music/Assassins.mp3" define MusicSerious5 = "/music/Human-Heartbeat_01.mp3" define MusicSerious6 = "/music/Knocking.mp3" define MusicSerious7 = "/music/Magnetic.mp3" #new with v0.8 define MusicSerious7a = "/music/Magnetic.mp3" #new with v0.11 define MusicSerious8 = "/music/StealthMusic_ Assault.mp3" #new with v0.9 define MusicSerious9 = "/music/Pyrosion - Gazer.mp3" #new with v0.10 define MusicSerious10 = "/music/Drone Flight2.mp3" #new with v0.11 define MusicSerious11 = "/music/The High Line.mp3" #new with v0.11 define MusicSerious12 = "/music/Dark Suspense.mp3" #new with v0.11 define MusicSerious13 = "/music/Tension.mp3" #new with v0.11 define MusicSerious14 = "/music/DocuCineAtmosphere.mp3" #new with v0.12 define MusicSerious15 = "/music/Mysterious Ambient.mp3" #new with v0.12 define MusicSerious16 = "/music/Elysium.mp3" #new with v0.12 define MusicFight1 = "/music/Almost Evil.mp3" #new with v0.9 define MusicFight1a = "/music/Almost Evil.mp3" #new with v0.9 define MusicFight1b = "/music/Almost Evil.mp3" #new with v0.9 define MusicSexy1 = "/music/dirt-rhodes.mp3" define MusicSexy2 = "/music/Groove Day.mp3" #new with v0.9 / also MusicZak1 define MusicSexy3 = "/music/Sexy Time.mp3" #new with v0.10 define MusicSexy4 = "/music/Lifted.mp3" #new with v0.11 define MusicSexy5 = "/music/space-trip.mp3" #new with v0.12 define MusicSexy6 = "/music/Lifelike.mp3" #new with v0.13 define MusicSexy7 = "/music/Reborn.mp3" #new with v0.15.1 define MusicEnergetic1 = "/music/Device.mp3" define MusicEnergetic2 = "/music/Windscale-Chernobyl.mp3" #new with v0.10 define MusicEnergetic3 = "/music/Quickly.mp3" #new with v0.14 also MusicZak2/MusicValentini1 define MusicEnergetic4 = "/music/Talk-dirty.mp3" #new with v0.15.1 #--------------setings variables game beginning---------------# #default for cheat menu# #EP2 default mom_choice_00 = 0 #EP3 default yd_choice_00 = 0 default yd_choice_01 = 0 default mom_choice_01 = 0 default yd_choice_02 = 0 #EP4 default mom_choice_02 = 0 default od_choice_00 = 0 #EP5 default aunt_choice_00 = 0 default yd_choice_03 = 0 default yd_choice_04 = 0 default yd_choice_05 = 0 default yd_choice_06 = 0 #EP6 default aunt_choice_01 = 0 default yd_choice_07 = 0 #EP8 default kay_choice_00 = 0 default yd_choice_08 = 0 default yd_choice_09 = 0 default mom_choice_03 = 0 #EP9 default kay_choice_01 = 0 #EP11 default aunt_choice_02 = 0 default od_choice_01 = 0 default KoGa3pts_momStart = 0 default KoGa3pts_ydStart = 0 default KoGa3pts_odStart = 0 default KoGa3pts_auntStart = 0 default pts_mom = 0 #points Mom default pts_momTemp = 0 #points Mom default pts_yd = 0 #points younger Daughter default pts_ydTemp = 0 #points younger Daughter default pts_od = 0 #points older Daughter default pts_odTemp = 0 #points older Daughter default pts_aunt = 0 #point Aunt default pts_auntTemp = 0 #point Aunt default KoGa3ModMenuButtonPressed = False default KoGa3MainMenu = 0 default KoGa3DialogOptions = 1 default KoGa3QuickMenuOptions = 0 default KoGa3QuickMenuItems = 1 default KoGa3CheatButton = 1 default KoGa3CheatChapterButton = 1 default KoGa3ScreenStatsFull = 1 default KoGa3GameProgress = "EP.." default KoGa3GameProgress2 = 12 default KoGa3ChoiceOptions = 0 default name = "John" default KoGa3TextChange = 1 #default audio settings# default KoGa3MusicModStart = 0 default KoGa3JukeboxButton = 1 default KoGa3CurrentMusic = MusicMainMenu default KoGa3SSound = 1 default KoGa3HSound = 1 default KoGa3ESound = 1 default KoGa3Music = 1 default p_variable = 1 #--------------settings best choice option---------------# default KoGa3ChoiceOption = 1 default KoGa3ChoiceHintsOption = 0 default KoGa3ChoiceText1 = "{color=#008000}recommended{/color}" default KoGa3ChoiceText2 = "{color=#ff0000}not recommended{/color}" default KoGa3ChoiceView1 = KoGa3ChoiceText1 default KoGa3ChoiceView2 = KoGa3ChoiceText2 default KoGa3ChoiceTextOFF = "" default KoGa3ChoiceHints = 0 default KoGa3ChoiceHintsText = ""