From b58eed27648ccfc150f306c224fad5531c4c9abf Mon Sep 17 00:00:00 2001 From: Daniel Wong Date: Mon, 16 Jan 2023 12:04:33 +1100 Subject: [PATCH] Add GIN's BGM support --- Update/flow.txt | 3 +++ Update/init.txt | 17 +++++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/Update/flow.txt b/Update/flow.txt index 987274f..0d22350 100644 --- a/Update/flow.txt +++ b/Update/flow.txt @@ -2,6 +2,9 @@ void main() { SetValidityOfSaving( FALSE ); + + ModGenericCall("ShowSetupMenuIfRequired", ""); + CallSection("BrandLogo"); JumpSection("Title"); } diff --git a/Update/init.txt b/Update/init.txt index bc44ba3..346756e 100644 --- a/Update/init.txt +++ b/Update/init.txt @@ -135,9 +135,11 @@ void main() // GAltBGM controls which of these are selected ModAddBGMset("New BGM", "Placeholder", "ExtraBGM:BGM"); + ModAddBGMset("GIN's BGM", "Placeholder", "OGBGM:ExtraBGM:BGM"); // GAltSE controls which of these are selected ModAddSEset("New SE", "Placeholder", "ExtraSE:SE"); + ModAddSEset("GIN's SE", "Placeholder", "OGSE:ExtraSE:SE"); // Audio presets the user can select, consisting of a combination of the BGM and SE flags ModAddAudioset( @@ -163,6 +165,21 @@ void main() 0 // GAltSEFlow ); + ModAddAudioset( + "GIN's BGM/SE", + "This option uses GIN's Background Music (BGM) and Sound Effects (SE), which bring the BGM/SE closer to the original Japanese release. + + Please click on the 'Open BGM/SE FAQ' button to view the 07th-mod wiki for more details.", + "JP: GIN's BGM/SE", + "JP: This option uses GIN's Background Music (BGM) and Sound Effects (SE), which bring the BGM/SE closer to the original Japanese release. + + Please click on the 'Open BGM/SE FAQ' button to view the 07th-mod wiki for more details.", + 1, // GAltBGM + 1, // GAltBGMFlow + 1, // GAltSE + 1 // GAltSEFlow + ); + ModGenericCall("LipSyncSettings", ".3, .7, true"); CallScript( "flow" );