From 760d818321c7495b42fc3eba0a9ce5089923bce4 Mon Sep 17 00:00:00 2001 From: tellowkrinkle Date: Mon, 2 Mar 2020 23:35:30 -0600 Subject: [PATCH] Revert chapter number update This broke tip unlocks, chapter jump unlock change will now be handled by https://github.com/07th-mod/higurashi-assembly/commit/48267a75e2ac57ed2e352cc991a44b891f5956a0 --- Update/flow.txt | 33 ++++++++++++++++++--------------- 1 file changed, 18 insertions(+), 15 deletions(-) diff --git a/Update/flow.txt b/Update/flow.txt index 04754f3..742b823 100644 --- a/Update/flow.txt +++ b/Update/flow.txt @@ -134,7 +134,7 @@ void Day1() GetAchievement("HIGURASHI_STORY_EP01_02"); - StoreValueToLocalWork( ChapterNumber, 2 ); + StoreValueToLocalWork( ChapterNumber, 1 ); SavePoint("Ch.1 終わり", "End of Chapter 1"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -146,7 +146,7 @@ void Day2() { CallScript( "onik_002" ); - StoreValueToLocalWork( ChapterNumber, 3 ); + StoreValueToLocalWork( ChapterNumber, 2 ); SavePoint("Ch.2 終わり", "End of Chapter 2"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -160,7 +160,7 @@ void Day3() GetAchievement("HIGURASHI_STORY_EP01_03"); - StoreValueToLocalWork( ChapterNumber, 4 ); + StoreValueToLocalWork( ChapterNumber, 3 ); SavePoint("Ch.3 終わり", "End of Chapter 3"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -172,7 +172,7 @@ void Day4() { CallScript( "onik_004" ); - StoreValueToLocalWork( ChapterNumber, 5 ); + StoreValueToLocalWork( ChapterNumber, 4 ); SavePoint("Ch.4 終わり", "End of Chapter 4"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -186,7 +186,7 @@ void Day5() GetAchievement("HIGURASHI_STORY_EP01_04"); - StoreValueToLocalWork( ChapterNumber, 6 ); + StoreValueToLocalWork( ChapterNumber, 5 ); SavePoint("Ch.5 終わり", "End of Chapter 5"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -198,7 +198,7 @@ void Day9() { CallScript( "onik_009" ); - StoreValueToLocalWork( ChapterNumber, 7 ); + StoreValueToLocalWork( ChapterNumber, 6 ); JumpSection("Day9_2"); } @@ -207,7 +207,7 @@ void Day9_2() { CallScript( "onik_009_02" ); - StoreValueToLocalWork( ChapterNumber, 8 ); + StoreValueToLocalWork( ChapterNumber, 7 ); SavePoint("Ch.6 終わり", "End of Chapter 6"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -221,7 +221,7 @@ void Day10() GetAchievement("HIGURASHI_STORY_EP01_05"); - StoreValueToLocalWork( ChapterNumber, 9 ); + StoreValueToLocalWork( ChapterNumber, 8 ); SavePoint("Ch.7 終わり", "End of Chapter 7"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -235,7 +235,7 @@ void Day11() GetAchievement("HIGURASHI_STORY_EP01_06"); - StoreValueToLocalWork( ChapterNumber, 10 ); + StoreValueToLocalWork( ChapterNumber, 9 ); SavePoint("Ch.8 終わり", "End of Chapter 8"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -249,7 +249,7 @@ void Day12() GetAchievement("HIGURASHI_STORY_EP01_07"); - StoreValueToLocalWork( ChapterNumber, 11 ); + StoreValueToLocalWork( ChapterNumber, 10 ); SavePoint("Ch.9 終わり", "End of Chapter 9"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -263,7 +263,7 @@ void Day13() GetAchievement("HIGURASHI_STORY_EP01_08"); - StoreValueToLocalWork( ChapterNumber, 12 ); + StoreValueToLocalWork( ChapterNumber, 11 ); SavePoint("Ch.10 終わり", "End of Chapter 10"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -277,7 +277,8 @@ void Day14() GetAchievement("HIGURASHI_STORY_EP01_09"); - StoreValueToLocalWork( ChapterNumber, 13 ); + StoreValueToLocalWork( ChapterNumber, 12 ); + CallSection( "SetDay" ); JumpSection("Day14_2"); } @@ -288,7 +289,7 @@ void Day14_2() GetAchievement("HIGURASHI_STORY_EP01_10"); - StoreValueToLocalWork( ChapterNumber, 14 ); + StoreValueToLocalWork( ChapterNumber, 13 ); SavePoint("Ch.11 終わり", "End of Chapter 11"); CallSection( "SetDay" ); CallSection( "ViewTips" ); @@ -300,7 +301,8 @@ void Day15() { CallScript( "onik_015" ); - StoreValueToLocalWork( ChapterNumber, 15 ); + StoreValueToLocalWork( ChapterNumber, 14 ); + CallSection( "SetDay" ); JumpSection("Day15_2"); } @@ -311,7 +313,8 @@ void Day15_2() GetAchievement("HIGURASHI_STORY_EP01_11"); - StoreValueToLocalWork( ChapterNumber, 16 ); + StoreValueToLocalWork( ChapterNumber, 15 ); + CallSection( "SetDay" ); JumpSection("Day15_3"); }