diff --git a/game/chapter_variables.rpy b/game/chapter_variables.rpy index 575db42..cf19dcc 100644 --- a/game/chapter_variables.rpy +++ b/game/chapter_variables.rpy @@ -15,7 +15,6 @@ define ending_routes = { default anonscore = 0 default fangscore = 0 default wingStory = False -default lock_scores = False # Allows points to be increased # Chapter variables default chapter_list_length = get_chapter_list_length() diff --git a/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy b/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy index 808d65e..695f311 100644 --- a/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy +++ b/game/script/3.showing-up-at-band-practice-and-giving-feedback.rpy @@ -1688,7 +1688,7 @@ label chapter_3: label GuitarQuestionSpeakUp: - $ increase_fang_points() + $ fangscore += 1 "Fang does seem very passionate about playing guitar." diff --git a/game/script/4.anon-needs-help-during-music-period.rpy b/game/script/4.anon-needs-help-during-music-period.rpy index ac0c756..a6533a1 100644 --- a/game/script/4.anon-needs-help-during-music-period.rpy +++ b/game/script/4.anon-needs-help-during-music-period.rpy @@ -654,7 +654,7 @@ label chapter_4: label lHeads: - $ increase_fang_points() + $ fangscore += 1 "Guess that’s that." diff --git a/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy b/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy index 1d7c020..6e55222 100644 --- a/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy +++ b/game/script/5.fang-and-anon-cut-class-to-talk-on-the-roof.rpy @@ -1193,7 +1193,7 @@ label chapter_5: label lbeHonest: - $ increase_anon_points() + $ anonscore += 1 "I guess honesty is the best policy." window hide @@ -3584,8 +3584,8 @@ label chapter_5: if _value != "Snot": renpy.jump(_value+chr(0x61+_tick)) - $ increase_fang_points() - $ increase_anon_points() + $ fangscore += 1 + $ anonscore += 1 $ wingStory = True A "{cps=*.1}...{/cps}" diff --git a/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy b/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy index 4c38352..87ccb2f 100644 --- a/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy +++ b/game/script/6.anon-helps-fang-find-a-venue-for-band.rpy @@ -1918,7 +1918,7 @@ label chapter_6: label lAnonWaitsForFang: - $ increase_anon_points() + $ anonscore += 1 "{cps=*.1}...{/cps}No." @@ -2308,7 +2308,7 @@ label chapter_6: label lAskFang: - $ increase_fang_points() + $ fangscore += 1 A "Don’t worry about it." pause .5 diff --git a/game/script/7.concert-day.rpy b/game/script/7.concert-day.rpy index 96f6835..a974a75 100644 --- a/game/script/7.concert-day.rpy +++ b/game/script/7.concert-day.rpy @@ -477,7 +477,7 @@ label chapter_7: renpy.jump(renpy.display_menu(randomize_choices(choices))) label LeaveStageAsIs: - $ increase_anon_points() + $ anonscore += 1 pause .5 "Reed may not understand cable management,{w=.4} but then again neither did I." diff --git a/game/script/8.anon-and-fang-study-together.rpy b/game/script/8.anon-and-fang-study-together.rpy index 0bca172..95695f0 100644 --- a/game/script/8.anon-and-fang-study-together.rpy +++ b/game/script/8.anon-and-fang-study-together.rpy @@ -630,7 +630,7 @@ label chapter_8: label lLetFangPlayGuit: - $ increase_fang_points() + $ fangscore += 1 pause .5 diff --git a/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy b/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy index a2dcde6..50ba21b 100644 --- a/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy +++ b/game/script/9.anons'-dirty-laundry-gets-put-up-to-air.rpy @@ -1297,7 +1297,7 @@ label chapter_9: jump lGoHomeEarly label lWaitForTrishToExit: - $ increase_anon_points() + $ anonscore += 1 #play music 'audio/OST/fighter.ogg' fadein 1.0 A "You worried about her, too?" diff --git a/game/src/chapter_select.rpy b/game/src/chapter_select.rpy index b29d3f7..d9e2398 100644 --- a/game/src/chapter_select.rpy +++ b/game/src/chapter_select.rpy @@ -51,13 +51,10 @@ init python: def set_stats(): - global chapter_list_length, ending_route_number, is_end_reached, lock_scores + global chapter_list_length, ending_route_number, is_end_reached - # chapter_list_length = get_chapter_list_length() ending_route_number = get_ending() - lock_scores = True # Prevents scores from increasing when using the chapter selection tool - find_chapter_in_array() if not is_end_reached: diff --git a/game/utility.rpy b/game/utility.rpy index 313ab33..67ad7be 100644 --- a/game/utility.rpy +++ b/game/utility.rpy @@ -29,20 +29,6 @@ init python: else: renpy.unwatch(item) - - def increase_anon_points(): - global anonscore, lock_scores - - if not lock_scores: - anonscore += 1 - - - def increase_fang_points(): - global fangscore, lock_scores - - if not lock_scores: - fangscore += 1 - def toggle_debug(): if persistent.enable_debug_scores: