From 63a32c0a671faf05ada4a605cd7d76c3061e56fa Mon Sep 17 00:00:00 2001 From: KingRainbow44 Date: Mon, 8 May 2023 00:08:00 -0400 Subject: [PATCH] Lock game time with intro cutscene --- Resources/BinOutput/Quest/351.json | 10 +++++++++- Resources/ExcelBinOutput/QuestExcelConfigData.json | 10 +++++++++- Tool/MergeQuests.js | 8 ++++++++ 3 files changed, 26 insertions(+), 2 deletions(-) diff --git a/Resources/BinOutput/Quest/351.json b/Resources/BinOutput/Quest/351.json index 1e8b04e2e..29eaf75e2 100644 --- a/Resources/BinOutput/Quest/351.json +++ b/Resources/BinOutput/Quest/351.json @@ -40,7 +40,15 @@ "isRewind": true, "finishExec": [], "failExec": [], - "beginExec": [] + "beginExec": [ + { + "type": "QUEST_EXEC_SET_IS_GAME_TIME_LOCKED", + "param": [ + "1" + ], + "param_str": "" + } + ] }, { "subId": 35100, diff --git a/Resources/ExcelBinOutput/QuestExcelConfigData.json b/Resources/ExcelBinOutput/QuestExcelConfigData.json index 819e0b76d..a800eda78 100644 --- a/Resources/ExcelBinOutput/QuestExcelConfigData.json +++ b/Resources/ExcelBinOutput/QuestExcelConfigData.json @@ -1253,7 +1253,15 @@ "isRewind": true, "finishExec": [], "failExec": [], - "beginExec": [] + "beginExec": [ + { + "type": "QUEST_EXEC_SET_IS_GAME_TIME_LOCKED", + "param": [ + "1" + ], + "param_str": "" + } + ] }, { "json_file": "351.json", diff --git a/Tool/MergeQuests.js b/Tool/MergeQuests.js index 161adf9eb..1ec3c7be4 100644 --- a/Tool/MergeQuests.js +++ b/Tool/MergeQuests.js @@ -31,6 +31,14 @@ const patches = { count: 1 } ] + }, + 35104: { + beginExec: [ + { + type: "QUEST_EXEC_SET_IS_GAME_TIME_LOCKED", + param: ["1"], param_str: "" + } + ] } };