#Mod for the game Intertwined / KoGa3# # new audio channel for the game 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) #---------------------resetting the characters for my outlines---------------------# init 1001: define mc = DynamicCharacter("name", color="#19a3ca") define a = Character("Alexis", color="#ff0c0c") define m = Character("Emily", color="#f0509b") define d = Character("Andres", color="#514b75") define er = Character("Erynn", color="#c600b1") define me = Character("Melissa", color="#f05205") define la = Character("Layla", color="#05f0d7") define el = Character("Elena", color="#f5e705") define ni = Character("Nikki", color="#9316f4") define c = Character("Cara", color="#e71446") define ln = Character("Lakeyn", color="#6ad30d") define va = Character("Valeria", color="#12d15a") define br = Character("Brooke", color="#4c2272") define ir = Character("Iris", color="#FFFFFF") define mr = Character("Mira", color="#FFFFFF") define ha = Character("Haley", color="#FFFFFF") define z = Character("Zach", color="#074dc2") define na = Character("Nathan", color="#074dc2") define sa = Character("Santiago", color="#FFFFFF") define jo = Character("John", color="#FFFFFF") define sn = Character("Mr Navarro", color="#FFFFFF") define sc = Character("Sha'Carri", color="#FFFFFF") define to = Character("Tori", color="#FFFFFF") define da = Character("Darryl", color="#FFFFFF") define tj = Character("TJ", color="#FFFFFF") define et = Character("Ethan", color="#FFFFFF") define nt = Character("Natasha", color="#FFFFFF") define si = Character("Sienna", color="#FFFFFF") define mk = Character("MacKenzie", color="#FFFFFF") define jz = Character("Jasmine", color="#FFFFFF") define td = Character("Mrs Davis (Naomi)", color="#FFFFFF") define tc = Character("Mr Coleman", color="#FFFFFF") define tr = Character("Mrs Ramirez (Gabi)", color="#e84934") define am = Character("Adriana", color="#FFFFFF") define xv = Character("Mrs Vergara (Ximena)", color="#FFFFFF") define tm = Character("Coach (Mike)", color="#FFFFFF") define bd = Character("Dylan", color="#FFFFFF") define gi = Character("Gianna", color="#FFFFFF") define ma = Character("Mateo", color="#FFFFFF") define di = Character("Diego", color="#FFFFFF") define av = Character("Ava", color="#FFFFFF") define bt = Character("Bartender", color="#FFFFFF") define ba = Character("Barrista", color="#FFFFFF") define ra = Character("Rachel", color="#FFFFFF") define em = Character("Emanuel", color="#FFFFFF") define ju = Character("Julia", color="#FFFFFF") define mg = Character("Miguel", color="#FFFFFF") define ai = Character("Aiden", color="#FFFFFF") define t = Character("Teacher", color="#FFFFFF") define pt = Character("Personal Trainer", color="#FFFFFF") define x = Character("???", color="#FFFFFF") define n = Character("", color="#FFFFFF") define pi = Character("Pilot", color="#FFFFFF") define fa = Character("Flight Attendant", color="#FFFFFF") define re = Character("Receptionist", color="#FFFFFF") define pa = Character("Parent", color="#FFFFFF") define ro = Character("Rose", color="#FFFFFF") define mi = Character("Michelle", color="#FFFFFF") define ja = Character("Jaylen", color="#FFFFFF") define jl = Character("Julian", color="#FFFFFF") define mo = Character("Monique", color="#FFFFFF") define je = Character("Jenna", color="#FFFFFF") define gb = Character("Gil Burke", color="#FFFFFF") define sq = Character("Shaq", color="#FFFFFF") define ih = Character("Isaiah", color="#FFFFFF") define ys = Character("Vocalist", color="#FFFFFF") define an = Character("Announcer", color="#FFFFFF") define ph = Character("Photographer", color="#FFFFFF") define pz = Character("Paparazzi", color="#FFFFFF") define st = Character("Students", color="#FFFFFF") define aa = Character("Together", color="#FFFFFF") define ab = Character("Nikki, [mc]", color="#FFFFFF") define gu = Character("Guest", color="#FFFFFF") define gr = Character("Girl", color="#FFFFFF") define gy = Character("Guy", color="#FFFFFF") define co = Character("Commentator", color="#FFFFFF") #---------------------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 ("Alexis_PointsTemp", Alexis_Points), SetVariable ("Emily_PointsTemp", Emily_Points), SetVariable ("Melissa_PointsTemp", Melissa_Points), SetVariable ("Erynn_PointsTemp", Erynn_Points), SetVariable ("Layla_PointsTemp", Layla_Points), SetVariable ("Elena_PointsTemp", Elena_Points), SetVariable ("Nikki_PointsTemp", Nikki_Points), SetVariable ("Cara_PointsTemp", Cara_Points), SetVariable ("Tori_PointsTemp", Tori_Points), SetVariable ("Adriana_PointsTemp", Adriana_Points), SetVariable ("Naomi_PointsTemp", Naomi_Points), SetVariable ("Nikki_WeekendTemp", Nikki_Weekend), SetVariable ("Cara_WeekendTemp", Cara_Weekend), SetVariable ("Gabi_PointsTemp", Gabi_Points), #not used so far SetVariable ("Rachel_PointsTemp", Rachel_Points), #maybe not used anymore with v0.10.5 SetVariable ("Natasha_PointsTemp", Natasha_Points), #not used so far SetVariable ("Lakeyn_PointsTemp", Lakeyn_Points), SetVariable ("Valeria_PointsTemp", Valeria_Points), SetVariable ("Julia_PointsTemp", Julia_Points), #maybe not used anymore with v0.10.5 SetVariable ("Sienna_PointsTemp", Sienna_Points), #not used so far SetVariable ("Brooke_PointsTemp", Brooke_Points), SetVariable ("Iris_PointsTemp", Iris_Points), SetVariable ("Zach_PointsTemp", Zach_Points), SetVariable ("Nikki_Visit_PointsTemp", Nikki_Visit_Points), SetVariable ("Cara_Visit_PointsTemp", Cara_Visit_Points), SetVariable ("Mira_PointsTemp", Mira_Points), SetVariable ("MC_GoodStudentTemp", MC_GoodStudent), #new with v0.10.5 SetVariable ("Alexis_BeachPointsTemp", Alexis_BeachPoints), #new with v0.11 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_1_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_2_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_QuickMusic1_button_text.font = "KoGa3.ttf" style.KoGa3_QuickMusic1_button_text.color = "#87cefa" #"#808080" "#ffffff" style.KoGa3_QuickMusic1_button_text.hover_color = "#c90016" style.KoGa3_QuickMusic1_button_text.selected_color = "#ffff00" #"#ffffff" style.KoGa3_QuickMusic1_button_text.insensitive_color = "#c4aead" style.KoGa3_QuickMusic1_button_text.size = 25 style.KoGa3_QuickMusic1_button_text.outlines = [ (absolute(1), "#000000", absolute(0), absolute(0)) ] 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 = 25 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 = 25 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 = 25 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 = 25 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 = 25 #Button size in Mod menu for color buttons define KoGa3Color1 = "#c4aead" #{color=#c4aead} {/color} define KoGa3Color2 = "#ffff00" #{color=#ffffff} {/color} define KoGa3Color3 = "#ffffff" #{color=#ffffff} {/color} define KoGa3ModMenu_xsize1 = 425 #450 define KoGa3ModMenu_xsize2 = 100 #65 define KoGa3ModMenu_xsize3 = 125 #75 define KoGa3ModMenu_xsize4 = 90 define KoGa3ModMenu_xsize5 = 575 define KoGa3ModMenu_xsize6 = 225 define KoGa3ModMenu_xsize7 = 150 #---------------------blank screen---------------------# screen KoGa3ScreenBlank: add "/KoGa3MenuBack.png" modal True #---------------------Stats screen---------------------# screen KoGa3ScreenStats(): hbox: xalign 1.0 yalign 0.0 if KoGa3ScreenStatsFull == 0: #"Dummy" #textbutton (""): textbutton (""): text_style KoGa3_status_button_text selected False action [ SetVariable ("Alexis_PointsTemp", Alexis_Points), SetVariable ("Emily_PointsTemp", Emily_Points), SetVariable ("Melissa_PointsTemp", Melissa_Points), SetVariable ("Erynn_PointsTemp", Erynn_Points), SetVariable ("Layla_PointsTemp", Layla_Points), SetVariable ("Elena_PointsTemp", Elena_Points), SetVariable ("Nikki_PointsTemp", Nikki_Points), SetVariable ("Cara_PointsTemp", Cara_Points), SetVariable ("Tori_PointsTemp", Tori_Points), SetVariable ("Adriana_PointsTemp", Adriana_Points), SetVariable ("Naomi_PointsTemp", Naomi_Points), SetVariable ("Nikki_WeekendTemp", Nikki_Weekend), SetVariable ("Cara_WeekendTemp", Cara_Weekend), SetVariable ("Gabi_PointsTemp", Gabi_Points), #not used so far SetVariable ("Rachel_PointsTemp", Rachel_Points), #maybe not used anymore with v0.10.5 SetVariable ("Natasha_PointsTemp", Natasha_Points), #not used so far SetVariable ("Lakeyn_PointsTemp", Lakeyn_Points), SetVariable ("Valeria_PointsTemp", Valeria_Points), SetVariable ("Julia_PointsTemp", Julia_Points), #maybe not used anymore with v0.10.5 SetVariable ("Sienna_PointsTemp", Sienna_Points), SetVariable ("Brooke_PointsTemp", Brooke_Points), SetVariable ("Iris_PointsTemp", Iris_Points), SetVariable ("Zach_PointsTemp", Zach_Points), SetVariable ("Nikki_Visit_PointsTemp", Nikki_Visit_Points), SetVariable ("Cara_Visit_PointsTemp", Cara_Visit_Points), SetVariable ("Mira_PointsTemp", Mira_Points), SetVariable ("MC_GoodStudentTemp", MC_GoodStudent), #new with v0.10.5 SetVariable ("Alexis_BeachPointsTemp", Alexis_BeachPoints), #new with v0.11 SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] if KoGa3ScreenStatsFull == 1 or KoGa3ScreenStatsFull == 2: #KoGa3ScreenStatsFull 1 if KoGa3ScreenStatsFull == 1: textbutton ("Alexis:[Alexis_Points] Emily:[Emily_Points] Melissa:[Melissa_Points] Layla:[Layla_Points] Elena:[Elena_Points] Erynn:[Erynn_Points] Cara:[Cara_Points] Nikki:[Nikki_Points] Brooke:[Brooke_Points] Adriana:[Adriana_Points] Naomi:[Naomi_Points] Tori:[Tori_Points] Lakeyn:[Lakeyn_Points] Iris:[Iris_Points] Valeria:[Valeria_Points] Sienna:[Sienna_Points]"): text_style KoGa3_status_button_text selected True action [ SetVariable ("Alexis_PointsTemp", Alexis_Points), SetVariable ("Emily_PointsTemp", Emily_Points), SetVariable ("Melissa_PointsTemp", Melissa_Points), SetVariable ("Erynn_PointsTemp", Erynn_Points), SetVariable ("Layla_PointsTemp", Layla_Points), SetVariable ("Elena_PointsTemp", Elena_Points), SetVariable ("Nikki_PointsTemp", Nikki_Points), SetVariable ("Cara_PointsTemp", Cara_Points), SetVariable ("Tori_PointsTemp", Tori_Points), SetVariable ("Adriana_PointsTemp", Adriana_Points), SetVariable ("Naomi_PointsTemp", Naomi_Points), SetVariable ("Nikki_WeekendTemp", Nikki_Weekend), SetVariable ("Cara_WeekendTemp", Cara_Weekend), SetVariable ("Gabi_PointsTemp", Gabi_Points), #not used so far SetVariable ("Rachel_PointsTemp", Rachel_Points), #maybe not used anymore with v0.10.5 SetVariable ("Natasha_PointsTemp", Natasha_Points), #not used so far SetVariable ("Lakeyn_PointsTemp", Lakeyn_Points), SetVariable ("Valeria_PointsTemp", Valeria_Points), SetVariable ("Julia_PointsTemp", Julia_Points), #maybe not used anymore with v0.10.5 SetVariable ("Sienna_PointsTemp", Sienna_Points), SetVariable ("Brooke_PointsTemp", Brooke_Points), SetVariable ("Iris_PointsTemp", Iris_Points), SetVariable ("Zach_PointsTemp", Zach_Points), SetVariable ("Nikki_Visit_PointsTemp", Nikki_Visit_Points), SetVariable ("Cara_Visit_PointsTemp", Cara_Visit_Points), SetVariable ("Mira_PointsTemp", Mira_Points), SetVariable ("MC_GoodStudentTemp", MC_GoodStudent), #new with v0.10.5 SetVariable ("Alexis_BeachPointsTemp", Alexis_BeachPoints), #new with v0.11 SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] textbutton (">> "): text_style KoGa3_status_button_text selected False action [ SetVariable ("KoGa3ScreenStatsFull", 2) ] if KoGa3ScreenStatsFull == 2: #KoGa3ScreenStatsFull 2 textbutton ("MC good student:[MC_GoodStudent] Zach:[Zach_Points] Cara-Wkd:[Cara_Weekend] Nikki-Wkd:[Nikki_Weekend] Nikki-Vis:[Nikki_Visit_Points] Cara-Vis:[Cara_Visit_Points] Alexis beach points:[Alexis_BeachPointsTemp] "): text_style KoGa3_status_button_text selected True action [ SetVariable ("Alexis_PointsTemp", Alexis_Points), SetVariable ("Emily_PointsTemp", Emily_Points), SetVariable ("Melissa_PointsTemp", Melissa_Points), SetVariable ("Erynn_PointsTemp", Erynn_Points), SetVariable ("Layla_PointsTemp", Layla_Points), SetVariable ("Elena_PointsTemp", Elena_Points), SetVariable ("Nikki_PointsTemp", Nikki_Points), SetVariable ("Cara_PointsTemp", Cara_Points), SetVariable ("Tori_PointsTemp", Tori_Points), SetVariable ("Adriana_PointsTemp", Adriana_Points), SetVariable ("Naomi_PointsTemp", Naomi_Points), SetVariable ("Nikki_WeekendTemp", Nikki_Weekend), SetVariable ("Cara_WeekendTemp", Cara_Weekend), SetVariable ("Gabi_PointsTemp", Gabi_Points), #not used so far SetVariable ("Rachel_PointsTemp", Rachel_Points), #maybe not used anymore with v0.10.5 SetVariable ("Natasha_PointsTemp", Natasha_Points), #not used so far SetVariable ("Lakeyn_PointsTemp", Lakeyn_Points), SetVariable ("Valeria_PointsTemp", Valeria_Points), SetVariable ("Julia_PointsTemp", Julia_Points), #maybe not used anymore with v0.10.5 SetVariable ("Sienna_PointsTemp", Sienna_Points), SetVariable ("Brooke_PointsTemp", Brooke_Points), SetVariable ("Iris_PointsTemp", Iris_Points), SetVariable ("Zach_PointsTemp", Zach_Points), SetVariable ("Nikki_Visit_PointsTemp", Nikki_Visit_Points), SetVariable ("Cara_Visit_PointsTemp", Cara_Visit_Points), SetVariable ("Mira_PointsTemp", Mira_Points), SetVariable ("MC_GoodStudentTemp", MC_GoodStudent), #new with v0.10.5 SetVariable ("Alexis_BeachPointsTemp", Alexis_BeachPoints), #new with v0.11 SetVariable ("KoGa3ModMenuButtonPressed", True), Show("KoGa3ScreenCheat") ] textbutton ("<< "): text_style KoGa3_status_button_text selected False action [ SetVariable ("KoGa3ScreenStatsFull", 1) ] #---------------------Cheat menu---------------------# screen KoGa3ScreenCheat: add "/KoGa3MenuBack.png" modal True vbox: xalign 0.5 #yalign 0.5 spacing -9 textbutton (""): text_style "KoGa3_1_button_text" sensitive False action NullAction() 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 _("More cheat options..."): text_style "KoGa3_1_button_text" action Hide("KoGa3ScreenCheat"), Show("KoGa3ScreenCheatMore1") textbutton _("━━━━━━━━━━━━━━━━━━━━━ Cheat ━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if _in_replay: hbox: spacing 50 textbutton ("(in Replay not available)"): text_style "KoGa3_1_button_text" sensitive False action NullAction() else: hbox: spacing 50 textbutton ("Relationships:"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if KoGa3CheatButton is 1: textbutton (" 1 "): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton (" 1 "): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatButton", 1) ] if KoGa3CheatButton is 2: textbutton (" 2 "): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton (" 2 "): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatButton", 2) ] if KoGa3CheatButton is 3: textbutton (" 3 "): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton (" 3 "): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatButton", 3) ] if KoGa3CheatButton is 4: textbutton (" 4 "): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton (" 4 "): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatButton", 4) ] textbutton ("────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if KoGa3CheatButton == 1: hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP1: Alexis_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Alexis_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Alexis_Points", Alexis_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Alexis_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Alexis_Points", Alexis_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Alexis_Points != Alexis_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Alexis_Points", Alexis_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP1: Emily_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Emily_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Emily_Points", Emily_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Emily_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Emily_Points", Emily_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Emily_Points != Emily_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Emily_Points", Emily_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP1: Melissa_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Melissa_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Melissa_Points", Melissa_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Melissa_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Melissa_Points", Melissa_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Melissa_Points != Melissa_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Melissa_Points", Melissa_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP1: MC good student:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[MC_GoodStudent]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("MC_GoodStudent", MC_GoodStudent +1) hbox: xsize KoGa3ModMenu_xsize2 #if MC_GoodStudent >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("MC_GoodStudent", MC_GoodStudent -1) hbox: xsize KoGa3ModMenu_xsize3 if MC_GoodStudent != MC_GoodStudentTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("MC_GoodStudent", MC_GoodStudentTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP2: Layla_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Layla_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Layla_Points", Layla_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Layla_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Layla_Points", Layla_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Layla_Points != Layla_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Layla_Points", Layla_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP2: Elena_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Elena_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Elena_Points", Elena_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Elena_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Elena_Points", Elena_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Elena_Points != Elena_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Elena_Points", Elena_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP3: Erynn_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Erynn_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Erynn_Points", Erynn_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Erynn_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Erynn_Points", Erynn_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Erynn_Points != Erynn_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Erynn_Points", Erynn_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP3: Tori_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Tori_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Tori_Points", Tori_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Tori_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Tori_Points", Tori_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Tori_Points != Tori_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Tori_Points", Tori_PointsTemp) if KoGa3CheatButton == 2: hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP4: Cara_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Cara_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Cara_Points", Cara_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Cara_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Cara_Points", Cara_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Cara_Points != Cara_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Cara_Points", Cara_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP4: Nikki_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Nikki_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Points", Nikki_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Nikki_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Points", Nikki_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Nikki_Points != Nikki_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Points", Nikki_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP4: Lakeyn_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Lakeyn_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Lakeyn_Points", Lakeyn_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Lakeyn_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Lakeyn_Points", Lakeyn_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Lakeyn_Points != Lakeyn_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Lakeyn_Points", Lakeyn_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP4: Brooke_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Brooke_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Brooke_Points", Brooke_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Brooke_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Brooke_Points", Brooke_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Brooke_Points != Brooke_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Brooke_Points", Brooke_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP5: Adriana_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Adriana_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Adriana_Points", Adriana_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Adriana_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Adriana_Points", Adriana_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Adriana_Points != Adriana_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Adriana_Points", Adriana_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP6: Naomi_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Naomi_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Naomi_Points", Naomi_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Naomi_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Naomi_Points", Naomi_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Naomi_Points != Naomi_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Naomi_Points", Naomi_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP6: Cara_Weekend:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Cara_Weekend]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Cara_Weekend", Cara_Weekend +1) hbox: xsize KoGa3ModMenu_xsize2 #if Cara_Weekend >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Cara_Weekend", Cara_Weekend -1) hbox: xsize KoGa3ModMenu_xsize3 if Cara_Weekend != Cara_WeekendTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Cara_Weekend", Cara_WeekendTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP6: Nikki_Weekend:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Nikki_Weekend]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Weekend", Nikki_Weekend +1) hbox: xsize KoGa3ModMenu_xsize2 #if Nikki_Weekend >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Weekend", Nikki_Weekend -1) hbox: xsize KoGa3ModMenu_xsize3 if Nikki_Weekend != Nikki_WeekendTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Weekend", Nikki_WeekendTemp) if KoGa3CheatButton == 3: hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP8: Valeria_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Valeria_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Valeria_Points", Valeria_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Valeria_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Valeria_Points", Valeria_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Valeria_Points != Valeria_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Valeria_Points", Valeria_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP8: Iris_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Iris_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Iris_Points", Iris_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Iris_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Iris_Points", Iris_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Iris_Points != Iris_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Iris_Points", Iris_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP8: Zach_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Zach_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Zach_Points", Zach_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Zach_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Zach_Points", Zach_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Zach_Points != Zach_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Zach_Points", Zach_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP9: Nikki_Visit_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Nikki_Visit_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Visit_Points", Nikki_Visit_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Nikki_Visit_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Visit_Points", Nikki_Visit_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Nikki_Visit_Points != Nikki_Visit_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Nikki_Visit_Points", Nikki_Visit_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP9: Cara_Visit_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Cara_Visit_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Cara_Visit_Points", Cara_Visit_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Cara_Visit_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Cara_Visit_Points", Cara_Visit_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Cara_Visit_Points != Cara_Visit_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Cara_Visit_Points", Cara_Visit_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP10: MC_GoodStudent:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[MC_GoodStudent]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("MC_GoodStudent", MC_GoodStudent +1) hbox: xsize KoGa3ModMenu_xsize2 #if MC_GoodStudent >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("MC_GoodStudent", MC_GoodStudent -1) hbox: xsize KoGa3ModMenu_xsize3 if MC_GoodStudent != MC_GoodStudentTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("MC_GoodStudent", MC_GoodStudentTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP11: Sienna_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Sienna_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Sienna_Points", Sienna_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Sienna_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Sienna_Points", Sienna_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Sienna_Points != Sienna_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Sienna_Points", Sienna_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "EP11: Alexis_BeachPoints:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Alexis_BeachPoints]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Alexis_BeachPoints", Alexis_BeachPoints +1) hbox: xsize KoGa3ModMenu_xsize2 #if Alexis_BeachPointsTemp >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Alexis_BeachPoints", Alexis_BeachPoints -1) hbox: xsize KoGa3ModMenu_xsize3 if Alexis_BeachPoints != Alexis_BeachPointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Alexis_BeachPoints", Alexis_BeachPointsTemp) if KoGa3CheatButton == 4: textbutton _("(Info: points below are not used in the game so far)"): text_style "KoGa3_1_button_text" selected True sensitive False action NullAction() hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "Gabi_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Gabi_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Gabi_Points", Gabi_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Gabi_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Gabi_Points", Gabi_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Gabi_Points != Gabi_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Gabi_Points", Gabi_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "Natasha_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Natasha_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Natasha_Points", Natasha_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Natasha_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Natasha_Points", Natasha_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Natasha_Points != Natasha_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Natasha_Points", Natasha_PointsTemp) hbox: hbox: xsize KoGa3ModMenu_xsize1 textbutton "Mira_Points:": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton "{color=[KoGa3Color3]}[Mira_Points]": text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: xsize KoGa3ModMenu_xsize2 textbutton _("+1") text_style "KoGa3_1_button_text" action SetVariable("Mira_Points", Mira_Points +1) hbox: xsize KoGa3ModMenu_xsize2 #if Mira_Points >= 1: textbutton _("-1") text_style "KoGa3_1_button_text" action SetVariable("Mira_Points", Mira_Points -1) hbox: xsize KoGa3ModMenu_xsize3 if Mira_Points != Mira_PointsTemp: textbutton ("Reset") text_style "KoGa3_1_button_text" action SetVariable("Mira_Points", Mira_PointsTemp) textbutton ("────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() if KoGa3ScreenStatsFull == 1 or KoGa3ScreenStatsFull == 2: hbox: #xsize 400 spacing 15 hbox: #xsize 400 spacing 5 textbutton ("Status infos:"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3ScreenStatsFull", 0), Hide("KoGa3ScreenStats") ] textbutton ("ON "): text_style "KoGa3_1_button_text" selected True action NullAction() textbutton " color:": text_style "KoGa3_1_button_text" 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: hbox: #xsize 400 spacing 5 textbutton ("Status infos:"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3ScreenStatsFull", 1), Show("KoGa3ScreenStats") ] textbutton ("OFF"): text_style "KoGa3_1_button_text" selected True action NullAction() # textbutton _("━━━━━━━━━━━━━━━━━━━━━ Audio ━━━━━━━━━━━━━━━━━━━━━"): #not used in Cheat only Mod # text_style "KoGa3_1_button_text" # sensitive False # action NullAction() # #textbutton _("(Info: only for game content 0.1 through 0.7!)"): # # text_style "KoGa3_1_button_text" # # sensitive False # # action NullAction() # if KoGa3ESound == 1: # textbutton _("Human erotic sounds/sound SFX: {color=[KoGa3Color2]}ON{/color}"): # text_style "KoGa3_1_button_text" # selected False # action [ # Stop ("sound1"), # Stop ("sound2"), # SetVariable("KoGa3SSound", 0), # SetVariable("KoGa3HSound", 0), # SetVariable("KoGa3ESound", 0) ] # if KoGa3ESound == 0: # textbutton _("Human erotic sounds/sound SFX: {color=[KoGa3Color2]}OFF{/color}"): # text_style "KoGa3_1_button_text" # action [ # Play("audio", "/audio/Female-Moan_01.mp3"), # SetVariable("KoGa3SSound", 1), # SetVariable("KoGa3HSound", 1), # SetVariable("KoGa3ESound", 1) ] # hbox: # spacing 30 # textbutton ("Game music Mod:"): # text_style "KoGa3_1_button_text" # sensitive False # action NullAction() # if KoGa3Music == 0 or KoGa3Music == 2: # textbutton _("ON"): # text_style "KoGa3_1_button_text" # selected False # action [ # Play("music", KoGa3CurrentMusic), # SetVariable("KoGa3Music", 1), # #Stop("music"), # SetVariable("KoGa3QuickMusic", 0), # SetVariable("KoGa3QuickMusicMRGroup", 0), # Hide("KoGa3QuickMusic"), # Hide("KoGa3QuickMusic1") ] # if KoGa3Music == 1: # textbutton ("ON"): # text_style "KoGa3_1_button_text" # selected True # action NullAction() # if KoGa3Music == 1 or KoGa3Music == 2: # textbutton _("OFF"): # text_style "KoGa3_1_button_text" # selected False # action [ # Stop ("music"), # SetVariable("KoGa3Music", 0), # SetVariable("KoGa3QuickMusic", 0), # SetVariable("KoGa3QuickMusicMRGroup", 0), # Hide("KoGa3QuickMusic"), # Hide("KoGa3QuickMusic1") ] # if KoGa3Music == 0: # textbutton ("OFF"): # text_style "KoGa3_1_button_text" # selected True # action NullAction() # if KoGa3Music == 0 or KoGa3Music == 1: # textbutton ("QuickMusic"): # text_style "KoGa3_1_button_text" # selected False # action [ # Stop("music"), # SetVariable("KoGa3QuickMusic", 1), # SetVariable("KoGa3Music", 2), # SetVariable ("KoGa3ModMenuButtonPressed", False), # SetVariable ("KoGa3QuickMusicMRGroup", 148), # KoGa3MR_All1.Play("music/Urban-Traffic.mp3"), # Hide("KoGa3ScreenCheat"), # Show("KoGa3QuickMusic") ] # if KoGa3Music == 2: # textbutton ("QuickMusic"): # text_style "KoGa3_1_button_text" # selected True # action NullAction() #textbutton ("────────────────────────────────────────────────"): # text_style "KoGa3_1_button_text" # sensitive False # action NullAction() # textbutton _("Music Jukebox..."): # text_style "KoGa3_1_button_text" # selected False # 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 menu---------------------# init: $ gamevariable_listP1=[] $ gamevariable_listP1.append(["Alexis_Intro_Join","EP1"]) $ gamevariable_listP1.append(["Melissa_Intro_Hug","EP1"]) $ gamevariable_listP1.append(["Melissa_Intro_Sunbath","EP1"]) $ gamevariable_listP1.append(["MC_Week1_Monday_Skip","EP1"]) $ gamevariable_listP1.append(["Alexis_End","EP2"]) $ gamevariable_listP1.append(["Layla_Week1_Monday_Four","EP2"]) $ gamevariable_listP1.append(["Layla_Week1_Monday_Legs","EP2"]) $ gamevariable_listP1.append(["Layla_Week1_Monday_Payattention","EP2"]) $ gamevariable_listP1.append(["Alexis_Week1_Monday_BarWait","EP3"]) $ gamevariable_listP1.append(["Alexis_Week1_Wednesday_PhoneHome","EP3"]) $ gamevariable_listP1.append(["Elena_Cute","EP3"]) $ gamevariable_listP1.append(["Elena_Week1_TrainKiss","EP3"]) $ gamevariable_listP1.append(["Elena_Week1_TrainKissLayla","EP3"]) $ gamevariable_listP1.append(["Erynn_Week1_ShowerJoin","EP3"]) $ gamevariable_listP1.append(["Layla_Week1_Wednesday_ParkHelp","EP3"]) $ gamevariable_listP1.append(["Layla_Week1_Wednesday_ParkStay","EP3"]) $ gamevariable_listP1.append(["Rachel_End","EP3"]) $ gamevariable_listP1.append(["Sienna_Name","EP3"]) $ gamevariable_listP1.append(["Tori_Week1_Interested","EP3"]) $ gamevariable_listP1.append(["Andres_FB_Punch","EP4"]) $ gamevariable_listP1.append(["Cara_End","EP4"]) $ gamevariable_listP1.append(["Cara_FB_Choose","EP4"]) $ gamevariable_listP1.append(["FB_Riverside_Nathan_Fight","EP4"]) $ gamevariable_listP1.append(["Julia_FB_Sex","EP4"]) $ gamevariable_listP1.append(["Nikki_End","EP4"]) $ gamevariable_listP1.append(["Nikki_FB_Butt","EP4"]) $ gamevariable_listP1.append(["Nikki_FB_Carry","EP4"]) $ gamevariable_listP1.append(["Nikki_FB_Choose","EP4"]) $ gamevariable_listP1.append(["Nikki_FB_Help","EP4"]) $ gamevariable_listP1.append(["Nikki_FB_Pancakes","EP4"]) $ gamevariable_listP1.append(["Alexis_Dated","EP4a"]) $ gamevariable_listP1.append(["Alexis_Week1_Concert","EP4a"]) $ gamevariable_listP1.append(["Alexis_Week1_Saturday_Picture","EP4a"]) $ gamevariable_listP1.append(["Alexis_Week1_Saturday_Picture_Night","EP4a"]) $ gamevariable_listP1.append(["Alexis_Week1_Sunday_Chocolate","EP4a"]) $ gamevariable_listP1.append(["Alexis_Week1_Sunday_Concert_Sing","EP4a"]) $ gamevariable_listP1.append(["Alexis_Week1_Sunday_Flower","EP4a"]) $ gamevariable_listP1.append(["Dylan_Week1_Assumption","EP4a"]) $ gamevariable_listP1.append(["Elena_Week1_Saturday_Beach_Reminder","EP4a"]) $ gamevariable_listP1.append(["Emily_Week1_Saturday_Lie","EP4a"]) $ gamevariable_listP1.append(["Erynn_Week1_Saturday_Pool","EP4a"]) $ gamevariable_listP1.append(["Erynn_Week1_Stay","EP4a"]) $ gamevariable_listP1.append(["Layla_Week1_Piggyback","EP4a"]) $ gamevariable_listP1.append(["Layla_Week1_Saturday_Beach","EP4a"]) $ gamevariable_listP1.append(["Layla_Week1_Saturday_Beach_Boobs","EP4a"]) $ gamevariable_listP1.append(["Layla_Week1_Saturday_Beach_Kiss","EP4a"]) $ gamevariable_listP1.append(["Layla_Week1_Saturday_Beach_Slap","EP4a"]) $ gamevariable_listP1.append(["Layla_Week1_Saturday_Beach_Ocean","EP4a"]) $ gamevariable_listP1.append(["Layla_Week1_Saturday_BeachInvite","EP4a"]) $ gamevariable_listP1.append(["Rachel_Week1_Restaurant","EP4a"]) $ gamevariable_listP1.append(["Rachel_Week1_Saturday_Picture","EP4a"]) $ gamevariable_listP1.append(["Cara_Week2_Tuesday_Phonecall","EP5"]) $ gamevariable_listP1.append(["Elena_Week2_Tuesday_RecruitJoke","EP5"]) $ gamevariable_listP1.append(["Erynn_Week1_Cupsize","EP5"]) $ gamevariable_listP1.append(["Erynn_Week2_Monday_Bed","EP5"]) $ gamevariable_listP1.append(["Erynn_Week2_Monday_GoToErynn","EP5"]) $ gamevariable_listP1.append(["Erynn_Week2_Tuesday_Gift","EP5"]) $ gamevariable_listP1.append(["Erynn_Week2_Tuesday_Pickup","EP5"]) $ gamevariable_listP1.append(["Erynn_Week2_Tuesday_Shirt","EP5"]) $ gamevariable_listP1.append(["Gabi_End","EP5"]) $ gamevariable_listP1.append(["Layla_Week2_Detention","EP5"]) $ gamevariable_listP1.append(["Layla_Week2_Tuesday_Lie","EP5"]) $ gamevariable_listP1.append(["Layla_Week2_Monday_LucasHelp","EP5"]) $ gamevariable_listP1.append(["Layla_Week2_Monday_Wait","EP5"]) $ gamevariable_listP1.append(["Nikki_Week2_Tuesday_Phonecall","EP5"]) $ gamevariable_listP1.append(["Week2_Monday_Bar_Stay","EP5"]) $ gamevariable_listP1.append(["Week2_Monday_Erynn_Ethan","EP5"]) $ gamevariable_listP1.append(["Week2_Monday_Erynn_Help","EP5"]) $ gamevariable_listP1.append(["Zach_Week2_Monday_House","EP5"]) $ gamevariable_listP1.append(["Zach_Week2_Monday_Sister","EP5"]) $ gamevariable_listP1.append(["Adriana_Week2_Monday_TestBack","EP6"]) $ gamevariable_listP1.append(["Alexis_Week2_Wednesday_Breakup","EP6"]) $ gamevariable_listP1.append(["Alexis_Week2_Wednesday_Tell","EP6"]) $ gamevariable_listP1.append(["Erynn_Week2_Thursday_Confront","EP6"]) $ gamevariable_listP1.append(["Layla_Friends","EP6"]) $ gamevariable_listP1.append(["Layla_Week2_Wednesday_CheckOut","EP6"]) $ gamevariable_listP1.append(["Layla_Week2_Wednesday_Knows","EP6"]) $ gamevariable_listP1.append(["Melissa_Week2_Tuesday_Dream","EP6"]) $ gamevariable_listP1.append(["Naomi_Week2_Wednesday_Math_Answer","EP6"]) $ gamevariable_listP1.append(["Nikki_Week2_Weekend_Handle","EP6"]) $ gamevariable_listP1.append(["Nikki_Week2_Weekend_Movie","EP6"]) $ gamevariable_listP1.append(["Adriana_Week2_Sunday_Dinner","EP7_1"]) $ gamevariable_listP1.append(["Alexis_Week2_Sunday_Honest","EP7_1"]) $ gamevariable_listP1.append(["Alexis_SecretPath","EP7_1"]) $ gamevariable_listP1.append(["Elena_Week3_Monday_CheerTraining","EP7_1"]) $ gamevariable_listP1.append(["Elena_Week3_Monday_Help","EP7_1"]) $ gamevariable_listP1.append(["Emily_Week3_Sunday_DareTell","EP7_1"]) $ gamevariable_listP1.append(["Erynn_Friends","EP7_1"]) $ gamevariable_listP1.append(["Erynn_End","EP7_1"]) $ gamevariable_listP1.append(["Erynn_Week3_Monday_Alexis_Mention","EP7_1"]) $ gamevariable_listP1.append(["Erynn_Week3_Monday_Blackmailhelp","EP7_1"]) $ gamevariable_listP1.append(["Erynn_Week3_Monday_Help","EP7_1"]) $ gamevariable_listP1.append(["Erynn_Week3_Monday_Makeout","EP7_1"]) $ gamevariable_listP1.append(["Iris_Week3_Sunday_Meet","EP7_1"]) $ gamevariable_listP1.append(["Layla_Week2_Sunday_TV_Makeout","EP7_1"]) $ gamevariable_listP1.append(["Layla_Week3_Friday_TC_Wager","EP7_1"]) $ gamevariable_listP1.append(["Layla_Week3_Tuesday_Race","EP7_1"]) $ gamevariable_listP1.append(["Layla_Week3_Tuesday_Race_Win","EP7_1"]) $ gamevariable_listP1.append(["Layla_Week3_Tuesday_Train","EP7_1"]) $ gamevariable_listP1.append(["MC_Week3_Saturday_TC_Cheer_Late","EP7_1"]) $ gamevariable_listP1.append(["ShaCarri_End","EP7_1"]) $ gamevariable_listP1.append(["Team_Yennefer","EP7_2"]) $ gamevariable_listP1.append(["Tori_End","EP7_2"]) $ gamevariable_listP1.append(["Week3_Monday_Spanish_Blackmail","EP7_2"]) $ gamevariable_listP1.append(["Week3_Monday_Spanish_Steal","EP7_2"]) $ gamevariable_listP1.append(["Adriana_Week3_Saturday_TC_Pick","EP8_1"]) $ gamevariable_listP1.append(["Alexis_Girlfriend","EP8_1"]) $ gamevariable_listP1.append(["Alexis_Week3_Sunday_BubbleIce","EP8_1"]) $ gamevariable_listP1.append(["Alexis_Week3_Sunday_Meet","EP8_1"]) $ gamevariable_listP1.append(["Alexis_Week3_Sunday_PizzaJoke","EP8_1"]) $ gamevariable_listP1.append(["Alexis_Week3_Wednesday_TC_Breakup","EP8_1"]) $ gamevariable_listP1.append(["Alexis_Week4_Monday_Meet","EP8_1"]) $ gamevariable_listP1.append(["Elena_Week3_Saturday_TC_Threewaykiss","EP8_1"]) $ gamevariable_listP1.append(["Emily_Week3_Sunday_Surprise","EP8_1"]) $ gamevariable_listP1.append(["Erynn_Week3_Wednesday_Lying","EP8_1"]) $ gamevariable_listP1.append(["Gabi_Week3_Friday_TC_Picture","EP8_1"]) $ gamevariable_listP1.append(["Layla_Week3_Wednesday_TC_Alexis_DateBoth","EP8_1"]) $ gamevariable_listP1.append(["Layla_Week3_Wednesday_TC_AlexisTalk","EP8_1"]) $ gamevariable_listP1.append(["Layla_Week3_Wednesday_TC_Kiss","EP8_1"]) $ gamevariable_listP1.append(["Layla_Week3_Wednesday_TC_TrainingPartner","EP8_1"]) $ gamevariable_listP1.append(["Layla_Week4_Monday_FailTest","EP8_1"]) $ gamevariable_listP1.append(["MC_Week3_Saturday_TC_Win","EP8_1"]) $ gamevariable_listP1.append(["TC_Pool_Elena","EP8_1"]) $ gamevariable_listP1.append(["TC_Pool_Layla","EP8_1"]) $ gamevariable_listP1.append(["TC_Pool_Sienna","EP8_1"]) $ gamevariable_listP1.append(["Tori_Week3_Friday_TC_Step","EP8_2"]) $ gamevariable_listP1.append(["Tori_Week3_Saturday_TC_Sex","EP8_2"]) $ gamevariable_listP1.append(["Tori_Week3_Wednesday_TC_Fun","EP8_2"]) $ gamevariable_listP1.append(["Valeria_Week3_Saturday_TC_Peek","EP8_2"]) $ gamevariable_listP1.append(["Valeria_Week3_Saturday_TC_Swap","EP8_2"]) $ gamevariable_listP1.append(["Valeria_Week3_Wednesday_Pictures","EP8_2"]) $ gamevariable_listP1.append(["Week3_Friday_TC_Kickball","EP8_2"]) $ gamevariable_listP1.append(["Zach_Week3_Saturday_TC_Swap","EP8_2"]) $ gamevariable_listP1.append(["Zach_Week3_Thursday_TC_Box","EP8_2"]) $ gamevariable_listP1.append(["Zach_Week3_Wednesday_Seats","EP8_2"]) $ gamevariable_listP1.append(["Zach_Week3_Wednesday_TC_Girlshower","EP8_2"]) $ gamevariable_listP1.append(["Alexis_RiversideStory","EP9"]) $ gamevariable_listP1.append(["Cara_Solo","EP9"]) $ gamevariable_listP1.append(["Cara_Week4_Thursday_Dress_Like","EP9"]) $ gamevariable_listP1.append(["Cara_Week4_Wednesday_Visit_Breakup","EP9"]) $ gamevariable_listP1.append(["Cara_Week4_Wednesday_Visit_Knows","EP9"]) $ gamevariable_listP1.append(["Elena_End","EP9"]) $ gamevariable_listP1.append(["Iris_FB_Outfit_Like","EP9"]) $ gamevariable_listP1.append(["Layla_End","EP9"]) $ gamevariable_listP1.append(["MC_Girlfriend_Riverside","EP9"]) $ gamevariable_listP1.append(["Naomi_Week4_Thursday_Watch","EP9"]) $ gamevariable_listP1.append(["Nikki_Solo","EP9"]) $ gamevariable_listP1.append(["Nikki_Week4_Thursday_ArmwrestlingWin","EP9"]) $ gamevariable_listP1.append(["Nikki_Week4_Thursday_Handstand_Help","EP9"]) $ gamevariable_listP1.append(["Nikki_Week4_Thursday_Swimsuit_Option1_Like","EP9"]) $ gamevariable_listP1.append(["Nikki_Week4_Wednesday_Visit_Breakup","EP9"]) $ gamevariable_listP1.append(["Nikki_Week4_Wednesday_Visit_Knows","EP9"]) $ gamevariable_listP1.append(["Riverside_End","EP9"]) $ gamevariable_listP1.append(["Valeria_Week4_Friday_Help","EP9"]) $ gamevariable_listP1.append(["Week4_Thursday_SleepOnCouch","EP9"]) $ gamevariable_listP1.append(["Alexis_Week4_Friday_Blackmail_Involve","EP10"]) $ gamevariable_listP1.append(["Cara_Visit_End","EP10"]) $ gamevariable_listP1.append(["Cara_Week4_Friday_LickAss","EP10"]) $ gamevariable_listP1.append(["Cara_Week4_Friday_Play","EP10"]) $ gamevariable_listP1.append(["Cara_Week4_Saturday_Bed","EP10"]) $ gamevariable_listP1.append(["Cara_Week4_Saturday_Game_Change","EP10"]) $ gamevariable_listP1.append(["Cara_Week4_Saturday_LickAss","EP10"]) $ gamevariable_listP1.append(["Emily_Week4_Sunday_Sexy","EP10"]) $ gamevariable_listP1.append(["Layla_Week5_Monday_Pictures","EP10"]) $ gamevariable_listP1.append(["MC_Bike","EP10"]) $ gamevariable_listP1.append(["MC_NoFriends","EP10"]) $ gamevariable_listP1.append(["Melissa_End","EP10"]) $ gamevariable_listP1.append(["Melissa_Week4_Saturday_Kiss","EP10"]) $ gamevariable_listP1.append(["Nikki_Visit_End","EP10"]) $ gamevariable_listP1.append(["Nikki_Week4_Friday_Oral","EP10"]) $ gamevariable_listP1.append(["Nikki_Week4_Friday_SleepBed","EP10"]) $ gamevariable_listP1.append(["Nikki_Week4_Saturday_Bed","EP10"]) $ gamevariable_listP1.append(["Valeria_End","EP10"]) $ gamevariable_listP1.append(["Valeria_Week5_Monday_Picture","EP10"]) $ gamevariable_listP1.append(["Alexis_Week5_Wednesday_Beach","EP11"]) $ gamevariable_listP1.append(["Alexis_Week5_Wednesday_Beach_Join","EP11"]) $ gamevariable_listP1.append(["Alexis_Week5_Wednesday_Club_KissIris","EP11"]) $ gamevariable_listP1.append(["Alexis_Week5_Wednesday_Run","EP11"]) $ gamevariable_listP1.append(["Elena_Friends","EP11"]) $ gamevariable_listP1.append(["Emily_Week5_Wednesday_BeachInvite_Adriana","EP11"]) $ gamevariable_listP1.append(["Erynn_Week5_Tuesday_Photoshoot","EP11"]) $ gamevariable_listP1.append(["Erynn_Week5_Tuesday_Photoshoot_Checkout","EP11"]) $ gamevariable_listP1.append(["Erynn_Week5_Tuesday_Photoshoot_Join","EP11"]) $ gamevariable_listP1.append(["Erynn_Week5_Tuesday_Room_Kiss","EP11"]) $ gamevariable_listP1.append(["Erynn_Week5_Tuesday_SlapAss","EP11"]) $ gamevariable_listP1.append(["Erynn_Week5_Tuesday_Wakeup","EP11"]) $ gamevariable_listP1.append(["Iris_Week5_Wednesday_Beach_Sex","EP11"]) $ gamevariable_listP1.append(["KFM_Fuck_Alexis","EP11"]) $ gamevariable_listP1.append(["KFM_Fuck_Erynn","EP11"]) $ gamevariable_listP1.append(["KFM_Marry_Alexis","EP11"]) $ gamevariable_listP1.append(["KFM_Marry_Erynn","EP11"]) $ gamevariable_listP1.append(["Layla_Week5_Wednesday_FirstTime","EP11"]) $ gamevariable_listP1.append(["Layla_Week5_Wednesday_LikeElenaKnow","EP11"]) $ gamevariable_listP1.append(["Sienna_Week5_Tuesday_Hottub_Sex","EP11"]) $ gamevariable_listP1.append(["Valeria_Friends","EP11"]) $ gamevariable_listP1.append(["Alexis_Week5_Thursday_BreakUpTalk","EP12"]) $ gamevariable_listP1.append(["Brooke_Week5_Thursday_Picture","EP12"]) $ gamevariable_listP1.append(["Erynn_Week5_Thursday_Photo","EP12"]) $ gamevariable_listP1.append(["Erynn_Week5_Thursday_Shower","EP12"]) $ gamevariable_listP1.append(["Ethan_Week5_Thursday_Plan","EP12"]) $ gamevariable_listP1.append(["Gianna_Week5_Thursday_CheckOut","EP12"]) $ gamevariable_listP1.append(["Layla_Week5_Wednesday_BreakUp","EP12"]) $ gamevariable_listP1.append(["Ximena_Week5_Thursday_Watch","EP12"]) screen KoGa3ScreenCheatMore1(): add "/KoGa3MenuBack.png" modal True vbox: xalign 0.5 #yalign 0.5 spacing -9 textbutton (""): text_style "KoGa3_1_button_text" sensitive False action NullAction() textbutton _("━━━━━━━━━━━━━━ Game variables for EP: ━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: spacing 8 if KoGa3CheatChapterButton is 1: textbutton ("1"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("1"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 1) ] if KoGa3CheatChapterButton is 2: textbutton ("2"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("2"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 2) ] if KoGa3CheatChapterButton is 3: textbutton ("3"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("3"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 3) ] if KoGa3CheatChapterButton is 41: textbutton ("4a"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("4a"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 41) ] if KoGa3CheatChapterButton is 42: textbutton ("4b"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("4b"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 42) ] if KoGa3CheatChapterButton is 5: textbutton ("5"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("5"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 5) ] if KoGa3CheatChapterButton is 6: textbutton ("6"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("6"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 6) ] if KoGa3CheatChapterButton is 71: textbutton ("7a"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("7a"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 71) ] if KoGa3CheatChapterButton is 72: textbutton ("7b"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("7b"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 72) ] if KoGa3CheatChapterButton is 81: textbutton ("8a"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("8a"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 81) ] if KoGa3CheatChapterButton is 82: textbutton ("8b"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("8b"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 82) ] if KoGa3CheatChapterButton is 9: textbutton ("9"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("9"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 9) ] if KoGa3CheatChapterButton is 10: textbutton ("10"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("10"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 10) ] if KoGa3CheatChapterButton is 11: textbutton ("11"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("11"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 11) ] if KoGa3CheatChapterButton is 12: textbutton ("12"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("12"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3CheatChapterButton", 12) ] textbutton ("────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() vbox: spacing -18 ################### Episode 1 ###################### if KoGa3CheatChapterButton == 1: for i in gamevariable_listP1: if i[1] == "EP1": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 2 ###################### if KoGa3CheatChapterButton == 2: for i in gamevariable_listP1: if i[1] == "EP2": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 3 ###################### if KoGa3CheatChapterButton == 3: for i in gamevariable_listP1: if i[1] == "EP3": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 4 ###################### if KoGa3CheatChapterButton == 41: for i in gamevariable_listP1: if i[1] == "EP4": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 4a ###################### if KoGa3CheatChapterButton == 42: for i in gamevariable_listP1: if i[1] == "EP4a": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 5 ###################### if KoGa3CheatChapterButton == 5: for i in gamevariable_listP1: if i[1] == "EP5": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 6 ###################### if KoGa3CheatChapterButton == 6: for i in gamevariable_listP1: if i[1] == "EP6": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 7_1 ###################### if KoGa3CheatChapterButton == 71: for i in gamevariable_listP1: if i[1] == "EP7_1": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 7_2 ###################### if KoGa3CheatChapterButton == 72: for i in gamevariable_listP1: if i[1] == "EP7_2": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 8_1 ###################### if KoGa3CheatChapterButton == 81: for i in gamevariable_listP1: if i[1] == "EP8_1": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 8_2 ###################### if KoGa3CheatChapterButton == 82: for i in gamevariable_listP1: if i[1] == "EP8_2": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 9 ###################### if KoGa3CheatChapterButton == 9: for i in gamevariable_listP1: if i[1] == "EP9": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 10 ###################### if KoGa3CheatChapterButton == 10: for i in gamevariable_listP1: if i[1] == "EP10": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 11 ###################### if KoGa3CheatChapterButton == 11: for i in gamevariable_listP1: if i[1] == "EP11": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) ################### Episode 12 ###################### if KoGa3CheatChapterButton == 12: for i in gamevariable_listP1: if i[1] == "EP12": hbox: textbutton i[0]: # selected False text_style "KoGa3_1a_button_text" action ToggleVariable(i[0]) textbutton ("━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() hbox: spacing 50 textbutton _("Back"): text_style "KoGa3_1_button_text" action [ Hide("KoGa3ScreenCheatMore1"), Show("KoGa3ScreenCheat") ] textbutton _("Close"): text_style "KoGa3_1_button_text" selected False action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3ScreenCheatMore1") ] #---------------------Jukebox---------------------# #not used in cheat only screen KoGa3ScreenJukebox: default soundis = False default p = None add "/KoGa3MenuBack.png" modal True vbox: xalign 0.5 #yalign 0.5 spacing -9 textbutton (""): text_style "KoGa3_1_button_text" sensitive False action NullAction() 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 30 textbutton ("Mod music (a-z):"): text_style "KoGa3_1_button_text" selected False sensitive False action [ SetVariable("KoGa3JukeboxButton", 1) ] 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-39"): text_style "KoGa3_1_button_text" selected True action NullAction() else: textbutton ("31-39"): text_style "KoGa3_1_button_text" selected False action [ SetVariable("KoGa3JukeboxButton", 3) ] textbutton ("────────────────────────────────────────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() #Mod music 01-15 if KoGa3JukeboxButton is 1: textbutton ("Assassins.mp3 (Serious theme 7)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious7), Play("music", "/music/Assassins.mp3") ] textbutton ("Background Music for Docus.mp3 (MC theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC1), Play("music", "/music/Background Music for Docus.mp3") ] textbutton ("City.mp3 (Erynn theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicErynn2), Play("music", "/music/City.mp3") ] textbutton ("climb.mp3 (Flight theme 1 / Mom theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicFlight1), Play("music", "/music/climb.mp3") ] textbutton ("dawn-of-the-apocalypse.mp3 (Serious theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious1), Play("music", "/music/dawn-of-the-apocalypse.mp3") ] textbutton ("Deep Thoughts.mp3 (Serious theme 5)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious5), Play("music", "/music/Deep Thoughts.mp3") ] textbutton ("dirt-rhodes.mp3 (Melissa theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMelissa2), Play("music", "/music/dirt-rhodes.mp3") ] textbutton ("Documentary Film Serious.mp3 (Alexis theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicAlexis1), Play("music", "/music/Documentary Film Serious.mp3") ] textbutton ("dreamsphere7.mp3 (Sexy theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy1), Play("music", "/music/dreamsphere7.mp3") ] textbutton ("Ear Candy.mp3 (Nikki theme 1 / Elena theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicNikki1), Play("music", "/music/Ear Candy.mp3") ] textbutton ("emotional-piano.mp3 (Flight theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicFlight2), Play("music", "/music/emotional-piano.mp3") ] textbutton ("Energetic Indie Rock.mp3 (Club theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicClub2), Play("music", "/music/Energetic Indie Rock.mp3") ] textbutton ("feelin-good.mp3 (Tori theme 1 / MC theme 3)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicTori1), Play("music", "/music/feelin-good.mp3") ] textbutton ("funkorama.mp3 (Layla theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicLayla1), Play("music", "/music/funkorama.mp3") ] textbutton ("Get It Done.mp3 (Club theme 3)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicClub3), Play("music", "/music/Get It Done.mp3") ] #Mod music 11-30 if KoGa3JukeboxButton is 2: textbutton ("Groove Grove.mp3 (Sexy theme 5)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy5), Play("music", "/music/Groove Grove.mp3") ] textbutton ("Ikson - Bloom.mp3 (Club theme 4)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicClub4), Play("music", "/music/Ikson - Bloom.mp3") ] textbutton ("Inspiring ABM.mp3 (Alexis theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicAlexis2), Play("music", "/music/Inspiring ABM.mp3") ] textbutton ("Minimal Corporate Ambient.mp3 (Elena theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicElena1), Play("music", "/music/Minimal Corporate Ambient.mp3") ] textbutton ("ModernUAC.mp3 (MC theme 4)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC4), Play("music", "/music/ModernUAC.mp3") ] textbutton ("MyLife.mp3 (Serious theme 3)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious3), Play("music", "/music/MyLife.mp3") ] textbutton ("Night Chase - Raz Burg.mp3 (Layla theme 3)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicLayla3), Play("music", "/music/Night Chase - Raz Burg.mp3") ] textbutton ("No Time To Lose.mp3 (Lakeyn theme 1 / serious 6)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicLakeyn1), Play("music", "/music/No Time To Lose.mp3") ] textbutton ("Nomyn - Elsewhere.mp3 (Sexy theme 3)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy3), Play("music", "/music/Nomyn - Elsewhere.mp3") ] textbutton ("Nomyn - Horizon.mp3 (Sexy theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy2), Play("music", "/music/Nomyn - Horizon.mp3") ] textbutton ("On Distance.mp3 (Cara theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicCara1), Play("music", "/music/On Distance.mp3") ] textbutton ("Plant Sneaking.mp3 (Sexy theme 4)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy4), Play("music", "/music/Plant Sneaking.mp3") ] textbutton ("positive-advertising.mp3 (Melissa theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMelissa1), Play("music", "/music/positive-advertising.mp3") ] textbutton ("Pulse_cut.mp3 (Serious theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious2), Play("music", "/music/Pulse_cut.mp3") ] textbutton ("Reflect_lv.mp3 (Layla theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicLayla2), Play("music", "/music/Reflect_lv.mp3") ] #Mod music 31-39 if KoGa3JukeboxButton is 3: textbutton ("Smallguitar.mp3 (Zach theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicZach1), Play("music", "/music/Smallguitar.mp3") ] textbutton ("SublabAzaleh_Cosmica.mp3 (Serious theme 4)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSerious4), Play("music", "/music/SublabAzaleh_Cosmica.mp3") ] textbutton ("The world inside.mp3 (MC theme 5)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC5), Play("music", "/music/The world inside.mp3") ] textbutton ("trizone.mp3 (Club theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicClub1), Play("music", "/music/trizone.mp3") ] textbutton ("Thin Ice-V3.mp3 (MC theme 2)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMC2), Play("music", "/music/Thin Ice-V3.mp3") ] textbutton ("tuesday.mp3 (Erynn theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicErynn1), Play("music", "/music/tuesday.mp3") ] textbutton ("Upbeat-and-Happy.mp3 (School theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSchool1), Play("music", "/music/Upbeat-and-Happy.mp3") ] textbutton ("Urban-Traffic.mp3 (Main Menu theme 1)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicMenu1), Play("music", "/music/Urban-Traffic.mp3") ] textbutton ("Vergangenheit_cut.mp3 (Sexy theme 6)"): text_style "KoGa3_1_button_text" sensitive True action [ Stop("music"), #SetVariable("KoGa3Jukebox", MusicSexy6), Play("music", "/music/Vergangenheit_cut.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", MusicMenu1) ] else: textbutton ("back to the menu title"): text_style "KoGa3_1_button_text" sensitive True action [ Play("music", MusicMenu1) ] 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() hbox: spacing 50 if KoGa3MainMenu == 1: textbutton ("Back"): text_style "KoGa3_1_button_text" sensitive True action [ SetVariable("KoGa3MainMenu", 0), Hide("KoGa3ScreenJukebox"), ] else: textbutton ("Back"): text_style "KoGa3_1_button_text" sensitive True action [ Hide("KoGa3ScreenJukebox"), Show("KoGa3ScreenCheat") ] textbutton _("Close"): text_style "KoGa3_1_button_text" selected False action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3ScreenJukebox") ] #---------------------add. game settings---------------------# screen KoGa3GameSettings: if not main_menu: add "/KoGa3MenuBack_settings.png" modal True vbox: xalign 0.5 spacing -12 null height (34) if _menu: textbutton _("━━━━━━━━━━━━━━━ Mod settings ━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() null height (35) ################################################################################# if not _menu: textbutton _("━━━━━━━━━━━━━━━━━ Mod menu ━━━━━━━━━━━━━━━━━"): text_style "KoGa3_1_button_text" sensitive False action NullAction() # hbox: # hbox: # xsize 245 # textbutton ("Music Mod: "): # text_style "KoGa3_1a_button_text" # sensitive False # action NullAction() # hbox: # xsize 240 # if KoGa3Music == 1: # textbutton _("ON "): # text_style "KoGa3_1a_button_text" # selected False # action [ # Stop ("music"), # Stop ("music1"), # Play("music", KoGa3CurrentMusic), # SetVariable("KoGa3Music", 1) ] # if KoGa3Music == 2: # textbutton _("OFF"): # text_style "KoGa3_1a_button_text" # selected False # action [ # Stop ("music"), # Stop ("music1"), # SetVariable("KoGa3Music", 2) ] # textbutton _("Music Jukebox..."): # text_style "KoGa3_1a_button_text" # selected False # sensitive True # action [ # Hide("KoGa3GameSettings"), # Show("KoGa3ScreenJukebox") ] ################################################################################# # hbox: # textbutton ("Game progress (info): [KoGa3GameProgress]"): # text_style "KoGa3_1a_button_text" # sensitive False # action NullAction() # null height (15) hbox: # hbox: # xsize 245 # textbutton ("Walkthrough: "): # text_style "KoGa3_1a_button_text" # sensitive False # action NullAction() # hbox: # xsize 240 # if KoGa3WTChange == "\n{size=1}{color=#363636}": # textbutton _("OFF"): # text_style "KoGa3_1a_button_text" # selected False # action [ # SetVariable ("KoGa3WTChange", "\n{size=32}{color=#008000}"), # SetVariable ("KoGa3WTChange1", "\n{size=32}{color=#ffdf00}"), # SetVariable ("KoGa3WTChange2", "\n{size=32}{color=#ff0000}") ] # else: # textbutton _("ON "): # text_style "KoGa3_1a_button_text" # selected False # action [ # SetVariable ("KoGa3WTChange", "\n{size=1}{color=#363636}"), # SetVariable ("KoGa3WTChange1", "\n{size=1}{color=#363636}"), # SetVariable ("KoGa3WTChange2", "\n{size=1}{color=#363636}") ] textbutton _("Change MC name..."): text_style "KoGa3_1a_button_text" selected False action [ Hide("KoGa3GameSettings"), Show("KoGa3ScreenBlank"), Call("KoGa3NameChange") ] null height (35) ################################################################################# hbox: hbox: xsize 50 if KoGa3DialogOptions == 0: textbutton _("+"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3DialogOptions", 1) ] 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 _("──────────── Dialog settings ──────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() else: hbox: textbutton _("──────────── Dialog settings ──────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() 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 KoGa3QuickMenuOptions == 0: textbutton _("+"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3QuickMenuOptions", 1) ] if KoGa3QuickMenuOptions == 1: textbutton _("─"): text_style "KoGa3_1a_button_text" selected False action [ SetVariable("KoGa3QuickMenuOptions", 0) ] hbox: textbutton _("────────── Quick menu settings ────────────"): text_style "KoGa3_1_button_text" sensitive False action NullAction() ################################################################################# 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" sensitive True action [ Hide("KoGa3GameSettings"), Hide("KoGa3ScreenBlank") ] else: hbox: spacing 30 textbutton _("Back"): text_style "KoGa3_1_button_text" sensitive True action [ Hide("KoGa3GameSettings"), Hide("KoGa3ScreenBlank"), Show("KoGa3ScreenCheat") ] textbutton _("Close"): text_style "KoGa3_1_button_text" selected False action [ SetVariable ("KoGa3ModMenuButtonPressed", False), Hide("KoGa3GameSettings"), Hide("KoGa3ScreenBlank") ] #---------------------add. game settings Quick Menu---------------------# screen KoGa3GameSettingsQuickMenu: if not main_menu: add "/KoGa3MenuBack_settings.png" modal True vbox: xalign 0.5 spacing -12 null height (34) #$ KoGa3TextboxOpacityPercent = int(persistent.KoGa3TextboxOpacity * 100) 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(persistent, "KoGa3TextOutline4", range=10, style="slider") 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(persistent, "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(persistent, "KoGa3TextOutline6", range=10, max_is_zero=False, style=u'slider', offset=-5, step=1) null height (34) textbutton _("━━━━━━━━━━━━━ Quick menu items ━━━━━━━━━━━━━"): 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 220 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 220 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 220 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 220 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 220 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 220 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 220 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 220 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 220 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 220 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 220 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") ] #-----------------------set name----------------------# label KoGa3NameChange: menu: "MC first name: {color=[KoGa3Color2]}[name]{/color} - change...": $ name = renpy.input("What is your first name?", default=name) $ name = name.strip() $ persistent.nameRePlay = name #old, not used anymore since v0.12 $ persistent.player_name = name jump KoGa3NameChange "Back": hide screen KoGa3ScreenBlank show screen KoGa3GameSettings pause return #--------------set default game variables---------------# init python: Adriana_Points = 0 Alexis_Points = 0 Alexis_BeachPoints = 0 Alexis_SP = 0 Brooke_Points = 0 Cara_Points = 0 Cara_Visit_Points = 0 Cara_Weekend = 0 Elena_Points = 0 Emily_Points = 0 Erynn_Points = 0 Gabi_Points = 0 Iris_Points = 0 Julia_Points = 0 Lakeyn_Points = 0 Layla_Points = 0 MC_GoodStudent = 0 Melissa_Points = 0 Mira_Points = 0 Naomi_Points = 0 Natasha_Points = 0 Nikki_Points = 0 Nikki_Visit_Points = 0 Nikki_Weekend = 0 Rachel_Points = 0 ShaCarri_Points = 0 Sienna_Points = 0 Tori_Points = 0 Valeria_Points = 0 Zach_Points = 0 Adriana_PointsTemp = 0 Alexis_PointsTemp = 0 Alexis_BeachPointsTemp = 0 Alexis_SPTemp = 0 Brooke_PointsTemp = 0 Cara_PointsTemp = 0 Cara_Visit_PointsTemp = 0 Cara_WeekendTemp = 0 Elena_PointsTemp = 0 Emily_PointsTemp = 0 Erynn_PointsTemp = 0 Gabi_PointsTemp = 0 Iris_PointsTemp = 0 Julia_PointsTemp = 0 Lakeyn_PointsTemp = 0 Layla_PointsTemp = 0 MC_GoodStudentTemp = 0 Melissa_PointsTemp = 0 Mira_PointsTemp = 0 Naomi_PointsTemp = 0 Natasha_PointsTemp = 0 Nikki_PointsTemp = 0 Nikki_Visit_PointsTemp = 0 Nikki_WeekendTemp = 0 Rachel_PointsTemp = 0 ShaCarri_PointsTemp = 0 Sienna_PointsTemp = 0 Tori_PointsTemp = 0 Valeria_PointsTemp = 0 Zach_PointsTemp = 0 #defaults for cheat Alexis_Intro_Join = False Melissa_Intro_Hug = False Melissa_Intro_Sunbath = False MC_Week1_Monday_Skip = False Alexis_End = False Layla_Week1_Monday_Four = False Layla_Week1_Monday_Legs = False Layla_Week1_Monday_Payattention = False Alexis_Week1_Monday_BarWait = False Alexis_Week1_Wednesday_PhoneHome = False Elena_Cute = False Elena_Week1_TrainKiss = False Elena_Week1_TrainKissLayla = False Erynn_Week1_ShowerJoin = False Layla_Week1_Wednesday_ParkHelp = False Layla_Week1_Wednesday_ParkStay = False Rachel_End = False Sienna_Name = False Tori_Week1_Interested = False Andres_FB_Punch = False Cara_End = False Cara_FB_Choose = False FB_Riverside_Nathan_Fight = False Julia_FB_Sex = False Nikki_End = False Nikki_FB_Butt = False Nikki_FB_Carry = False Nikki_FB_Choose = False Nikki_FB_Help = False Nikki_FB_Pancakes = False Alexis_Dated = False Alexis_Week1_Concert = False Alexis_Week1_Saturday_Picture = False Alexis_Week1_Saturday_Picture_Night = False Alexis_Week1_Sunday_Chocolate = False Alexis_Week1_Sunday_Concert_Sing = False Alexis_Week1_Sunday_Flower = False Dylan_Week1_Assumption = False Elena_Week1_Saturday_Beach_Reminder = False Emily_Week1_Saturday_Lie = False Erynn_Week1_Saturday_Pool = False Erynn_Week1_Stay = False Layla_Week1_Piggyback = False Layla_Week1_Saturday_Beach = False Layla_Week1_Saturday_Beach_Boobs = False Layla_Week1_Saturday_Beach_Kiss = False Layla_Week1_Saturday_Beach_Slap = False Layla_Week1_Saturday_Beach_Ocean = False Layla_Week1_Saturday_BeachInvite = False Rachel_Week1_Restaurant = False Rachel_Week1_Saturday_Picture = False Cara_Week2_Tuesday_Phonecall = False Elena_Week2_Tuesday_RecruitJoke = False Erynn_Week1_Cupsize = False Erynn_Week2_Monday_Bed = False Erynn_Week2_Monday_GoToErynn = False Erynn_Week2_Tuesday_Gift = False Erynn_Week2_Tuesday_Pickup = False Erynn_Week2_Tuesday_Shirt = False Gabi_End = False Layla_Week2_Detention = False Layla_Week2_Tuesday_Lie = False Layla_Week2_Monday_LucasHelp = False Layla_Week2_Monday_Wait = False Nikki_Week2_Tuesday_Phonecall = False Week2_Monday_Bar_Stay = False Week2_Monday_Erynn_Ethan = False Week2_Monday_Erynn_Help = False Zach_Week2_Monday_House = False Zach_Week2_Monday_Sister = False Adriana_Week2_Monday_TestBack = False Alexis_Week2_Wednesday_Breakup = False Alexis_Week2_Wednesday_Tell = False Erynn_Week2_Thursday_Confront = False Layla_Friends = False Layla_Week2_Wednesday_CheckOut = False Layla_Week2_Wednesday_Knows = False Melissa_Week2_Tuesday_Dream = False Naomi_Week2_Wednesday_Math_Answer = False Nikki_Week2_Weekend_Handle = False Nikki_Week2_Weekend_Movie = False Adriana_Week2_Sunday_Dinner = False Alexis_Week2_Sunday_Honest = False Alexis_SecretPath = False Elena_Week3_Monday_CheerTraining = False Elena_Week3_Monday_Help = False Emily_Week3_Sunday_DareTell = False Erynn_Friends = False Erynn_End = False Erynn_Week3_Monday_Alexis_Mention = False Erynn_Week3_Monday_Blackmailhelp = False Erynn_Week3_Monday_Help = False Erynn_Week3_Monday_Makeout = False Iris_Week3_Sunday_Meet = False Layla_Week2_Sunday_TV_Makeout = False Layla_Week3_Friday_TC_Wager = False Layla_Week3_Tuesday_Race = False Layla_Week3_Tuesday_Race_Win = False Layla_Week3_Tuesday_Train = False MC_Week3_Saturday_TC_Cheer_Late = False ShaCarri_End = False Team_Yennefer = False Tori_End = False Week3_Monday_Spanish_Blackmail = False Week3_Monday_Spanish_Steal = False Adriana_Week3_Saturday_TC_Pick = False Alexis_Girlfriend = False Alexis_Week3_Sunday_BubbleIce = False Alexis_Week3_Sunday_Meet = False Alexis_Week3_Sunday_PizzaJoke = False Alexis_Week3_Wednesday_TC_Breakup = False Alexis_Week4_Monday_Meet = False Elena_Week3_Saturday_TC_Threewaykiss = False Emily_Week3_Sunday_Surprise = False Erynn_Week3_Wednesday_Lying = False Gabi_Week3_Friday_TC_Picture = False Layla_Week3_Wednesday_TC_Alexis_DateBoth = False Layla_Week3_Wednesday_TC_AlexisTalk = False Layla_Week3_Wednesday_TC_Kiss = False Layla_Week3_Wednesday_TC_TrainingPartner = False Layla_Week4_Monday_FailTest = False MC_Week3_Saturday_TC_Win = False TC_Pool_Elena = False TC_Pool_Layla = False TC_Pool_Sienna = False Tori_Week3_Friday_TC_Step = False Tori_Week3_Saturday_TC_Sex = False Tori_Week3_Wednesday_TC_Fun = False Valeria_Week3_Saturday_TC_Peek = False Valeria_Week3_Saturday_TC_Swap = False Valeria_Week3_Wednesday_Pictures = False Week3_Friday_TC_Kickball = False Zach_Week3_Saturday_TC_Swap = False Zach_Week3_Thursday_TC_Box = False Zach_Week3_Wednesday_Seats = False Zach_Week3_Wednesday_TC_Girlshower = False Alexis_RiversideStory = False Cara_Solo = False Cara_Week4_Thursday_Dress_Like = False Cara_Week4_Wednesday_Visit_Breakup = False Cara_Week4_Wednesday_Visit_Knows = False Elena_End = False Iris_FB_Outfit_Like = False Layla_End = False MC_Girlfriend_Riverside = False Naomi_Week4_Thursday_Watch = False Nikki_Solo = False Nikki_Week4_Thursday_ArmwrestlingWin = False Nikki_Week4_Thursday_Handstand_Help = False Nikki_Week4_Thursday_Swimsuit_Option1_Like = False Nikki_Week4_Wednesday_Visit_Breakup = False Nikki_Week4_Wednesday_Visit_Knows = False Riverside_End = False Valeria_Week4_Friday_Help = False Week4_Thursday_SleepOnCouch = False Alexis_Week4_Friday_Blackmail_Involve = False Cara_Visit_End = False Cara_Week4_Friday_LickAss = False Cara_Week4_Friday_Play = False Cara_Week4_Saturday_Bed = False Cara_Week4_Saturday_Game_Change = False Cara_Week4_Saturday_LickAss = False Emily_Week4_Sunday_Sexy = False Layla_Week5_Monday_Pictures = False MC_Bike = False MC_NoFriends = False Melissa_End = False Melissa_Week4_Saturday_Kiss = False Nikki_Visit_End = False Nikki_Week4_Friday_Oral = False Nikki_Week4_Friday_SleepBed = False Nikki_Week4_Saturday_Bed = False Valeria_End = False Valeria_Week5_Monday_Picture = False Alexis_Week5_Wednesday_Beach = False Alexis_Week5_Wednesday_Beach_Join = False Alexis_Week5_Wednesday_Club_KissIris = False Alexis_Week5_Wednesday_Run = False Elena_Friends = False Emily_Week5_Wednesday_BeachInvite_Adriana = False Erynn_Week5_Tuesday_Photoshoot = False Erynn_Week5_Tuesday_Photoshoot_Checkout = False Erynn_Week5_Tuesday_Photoshoot_Join = False Erynn_Week5_Tuesday_Room_Kiss = False Erynn_Week5_Tuesday_SlapAss = False Erynn_Week5_Tuesday_Wakeup = False Iris_Week5_Wednesday_Beach_Sex = False KFM_Fuck_Alexis = False KFM_Fuck_Erynn = False KFM_Marry_Alexis = False KFM_Marry_Erynn = False Layla_Week5_Wednesday_FirstTime = False Layla_Week5_Wednesday_LikeElenaKnow = False Sienna_Week5_Tuesday_Hottub_Sex = False Valeria_Friends = False Alexis_Week5_Thursday_BreakUpTalk = False Brooke_Week5_Thursday_Picture = False Erynn_Week5_Thursday_Photo = False Erynn_Week5_Thursday_Shower = False Ethan_Week5_Thursday_Plan = False Gianna_Week5_Thursday_CheckOut = False Layla_Week5_Wednesday_BreakUp = False Ximena_Week5_Thursday_Watch = False #--------------various Mod variables---------------# default KoGa3ModMenuButtonPressed = False default KoGa3CheatButton = 1 default KoGa3CheatChapterButton = 1 default KoGa3ModStart = 0 default KoGa3ScreenStatsFull = 0 default KoGa3GameProgress = "EP.." default name = "John" default KoGa3DialogOptions = 1 default KoGa3QuickMenuOptions = 1