Skip to content

Commit

Permalink
Revert chapter number change
Browse files Browse the repository at this point in the history
This broke tip unlocks, chapter jump unlock change will now be handled by 07th-mod/higurashi-assembly@48267a7
  • Loading branch information
TellowKrinkle authored Mar 3, 2020
1 parent 46f7c67 commit c290319
Showing 1 changed file with 21 additions and 21 deletions.
42 changes: 21 additions & 21 deletions Update/flow.txt
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void Game()
{
SetValidityOfSaving( TRUE );

StoreValueToLocalWork( ChapterNumber, 1 );
StoreValueToLocalWork( ChapterNumber, 0 );
CallSection( "SetDay" );

//DrawSceneWithMask( "black", "2", 0, 0, 1000 );
Expand All @@ -128,7 +128,7 @@ void Day1()

GetAchievement("HIGURASHI_STORY_EP02_01");

StoreValueToLocalWork( ChapterNumber, 2 );
StoreValueToLocalWork( ChapterNumber, 1 );
SavePoint("Ch.1 終わり", "End of Chapter 1");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -142,7 +142,7 @@ void Day2()

GetAchievement("HIGURASHI_STORY_EP02_02");

StoreValueToLocalWork( ChapterNumber, 3 );
StoreValueToLocalWork( ChapterNumber, 2 );
SavePoint("Ch.2 終わり", "End of Chapter 2");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -156,7 +156,7 @@ void Day3()

GetAchievement("HIGURASHI_STORY_EP02_03");

StoreValueToLocalWork( ChapterNumber, 4 );
StoreValueToLocalWork( ChapterNumber, 3 );
SavePoint("Ch.3 終わり", "End of Chapter 3");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -170,7 +170,7 @@ void Day4()

GetAchievement("HIGURASHI_STORY_EP02_04");

StoreValueToLocalWork( ChapterNumber, 5 );
StoreValueToLocalWork( ChapterNumber, 4 );
SavePoint("Ch.4 終わり", "End of Chapter 4");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -184,7 +184,7 @@ void Day5()

GetAchievement("HIGURASHI_STORY_EP02_05");

StoreValueToLocalWork( ChapterNumber, 6 );
StoreValueToLocalWork( ChapterNumber, 5 );
SavePoint("Ch.5 終わり", "End of Chapter 5");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -196,7 +196,7 @@ void Day6()
{
CallScript( "wata_006" );

StoreValueToLocalWork( ChapterNumber, 7 );
StoreValueToLocalWork( ChapterNumber, 6 );
CallSection( "SetDay" );

JumpSection("Day7");
Expand All @@ -208,7 +208,7 @@ void Day7()

GetAchievement("HIGURASHI_STORY_EP02_06");

StoreValueToLocalWork( ChapterNumber, 8 );
StoreValueToLocalWork( ChapterNumber, 7 );
SavePoint("Ch.6 終わり", "End of Chapter 6");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -222,7 +222,7 @@ void Day8()

GetAchievement("HIGURASHI_STORY_EP02_07");

StoreValueToLocalWork( ChapterNumber, 9 );
StoreValueToLocalWork( ChapterNumber, 8 );
SavePoint("Ch.7 終わり", "End of Chapter 7");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -234,7 +234,7 @@ void Day9()
{
CallScript( "wata_009" );

StoreValueToLocalWork( ChapterNumber, 10 );
StoreValueToLocalWork( ChapterNumber, 9 );
CallSection( "SetDay" );

JumpSection("Day9_2");
Expand All @@ -246,7 +246,7 @@ void Day9_2()

GetAchievement("HIGURASHI_STORY_EP02_08");

StoreValueToLocalWork( ChapterNumber, 11 );
StoreValueToLocalWork( ChapterNumber, 10 );
SavePoint("Ch.8 終わり", "End of Chapter 8");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -258,7 +258,7 @@ void Day10()
{
CallScript( "wata_010" );

StoreValueToLocalWork( ChapterNumber, 12 );
StoreValueToLocalWork( ChapterNumber, 11 );
CallSection( "SetDay" );

JumpSection("Day10_2");
Expand All @@ -268,7 +268,7 @@ void Day10_2()
{
CallScript( "wata_010_02" );

StoreValueToLocalWork( ChapterNumber, 13 );
StoreValueToLocalWork( ChapterNumber, 12 );
SavePoint("Ch.9 終わり", "End of Chapter 9");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -281,7 +281,7 @@ void Day10_3()
CallScript( "wata_010_03" );


StoreValueToLocalWork( ChapterNumber, 14 );
StoreValueToLocalWork( ChapterNumber, 13 );
CallSection( "SetDay" );

JumpSection("Day10_4");
Expand All @@ -293,7 +293,7 @@ void Day10_4()

GetAchievement("HIGURASHI_STORY_EP02_09");

StoreValueToLocalWork( ChapterNumber, 15 );
StoreValueToLocalWork( ChapterNumber, 14 );
SavePoint("Ch.10 終わり", "End of Chapter 10");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -307,7 +307,7 @@ void Day11()

// GetAchievement("HIGURASHI_STORY_EP01_07");

StoreValueToLocalWork( ChapterNumber, 16 );
StoreValueToLocalWork( ChapterNumber, 15 );
CallSection( "SetDay" );

JumpSection("Day11_2");
Expand All @@ -319,7 +319,7 @@ void Day11_2()

GetAchievement("HIGURASHI_STORY_EP02_10");

StoreValueToLocalWork( ChapterNumber, 17 );
StoreValueToLocalWork( ChapterNumber, 16 );
SavePoint("Ch.11 終わり", "End of Chapter 11");
CallSection( "SetDay" );
CallSection( "ViewTips" );
Expand All @@ -333,7 +333,7 @@ void Day12()

// GetAchievement("HIGURASHI_STORY_EP01_09");

StoreValueToLocalWork( ChapterNumber, 18 );
StoreValueToLocalWork( ChapterNumber, 17 );
CallSection( "SetDay" );

JumpSection("Day12_2");
Expand All @@ -345,7 +345,7 @@ void Day12_2()

GetAchievement("HIGURASHI_STORY_EP02_11");

StoreValueToLocalWork( ChapterNumber, 19 );
StoreValueToLocalWork( ChapterNumber, 18 );
CallSection( "SetDay" );

JumpSection("Day12_3");
Expand All @@ -357,7 +357,7 @@ void Day12_3()

GetAchievement("HIGURASHI_STORY_EP02_12");

StoreValueToLocalWork( ChapterNumber, 20 );
StoreValueToLocalWork( ChapterNumber, 19 );
CallSection( "SetDay" );

JumpSection("Epilogue_01");
Expand All @@ -367,7 +367,7 @@ void Epilogue_01()
{
CallScript( "wata_ep_01" );

StoreValueToLocalWork( ChapterNumber, 21 );
StoreValueToLocalWork( ChapterNumber, 20 );
CallSection( "SetDay" );

JumpSection("Epilogue_02");
Expand Down

0 comments on commit c290319

Please sign in to comment.