diff --git a/Enderal - Forgotten Stories.esm b/Enderal - Forgotten Stories.esm index 49820046..31f34147 100644 Binary files a/Enderal - Forgotten Stories.esm and b/Enderal - Forgotten Stories.esm differ diff --git a/Moved startup quest.esp b/Moved startup quest.esp deleted file mode 100644 index a1827ad1..00000000 Binary files a/Moved startup quest.esp and /dev/null differ diff --git a/Skyrim.esm b/Skyrim.esm index 9cb5de5b..0237c025 100644 Binary files a/Skyrim.esm and b/Skyrim.esm differ diff --git a/scripts/_00E_MQ101_QuickStart.pex b/scripts/_00E_MQ101_QuickStart.pex index e124c3b3..a21a00b2 100644 Binary files a/scripts/_00E_MQ101_QuickStart.pex and b/scripts/_00E_MQ101_QuickStart.pex differ diff --git a/scripts/qf_mq101.pex b/scripts/qf_mq101.pex index 1cc4512e..977eb40e 100644 Binary files a/scripts/qf_mq101.pex and b/scripts/qf_mq101.pex differ diff --git a/source/scripts/_00E_MQ101_QuickStart.psc b/source/scripts/_00E_MQ101_QuickStart.psc index 44116b10..0c0e1009 100644 --- a/source/scripts/_00E_MQ101_QuickStart.psc +++ b/source/scripts/_00E_MQ101_QuickStart.psc @@ -4,8 +4,11 @@ function Init() MQP01.CompleteAllObjectives() MQP01.CompleteQuest() + MQP01.Stop() + MQP02.CompleteAllObjectives() MQP02.CompleteQuest() + MQP02.Stop() Utility.wait(0.5) diff --git a/source/scripts/qf_mq101.psc b/source/scripts/qf_mq101.psc index a99c7808..c3f51ca1 100644 --- a/source/scripts/qf_mq101.psc +++ b/source/scripts/qf_mq101.psc @@ -22,6 +22,7 @@ Utility.Wait(0.2) if SKSE.GetVersion() > 0 && EnderalFunctions.GetNewGameCount() > 1 Game.QuitToMainMenu() Debug.MessageBox("Due to an engine bug, new game should not be started after quitting to the main menu. Please, restart Enderal first.") + return endif if _00E_QuickStartPrompt.Show() > 0 @@ -29,6 +30,8 @@ if _00E_QuickStartPrompt.Show() > 0 else MQP01.SetCurrentStageID(10) endif + +Stop() ;END CODE EndFunction ;END FRAGMENT