diff --git a/scripts/_00e_game_skillmenusc.pex b/scripts/_00e_game_skillmenusc.pex deleted file mode 100644 index 5264b10c..00000000 Binary files a/scripts/_00e_game_skillmenusc.pex and /dev/null differ diff --git a/scripts/scriptarchiveorder.txt b/scripts/scriptarchiveorder.txt index 52e8c3fe..56f94931 100644 --- a/scripts/scriptarchiveorder.txt +++ b/scripts/scriptarchiveorder.txt @@ -4552,7 +4552,6 @@ scripts\_00e_gypsyluteplayeraliasscript.pex scripts\_00e_greetingtriggerscript.pex scripts\_00e_genericdialogue_functions.pex scripts\_00e_game_synchanimationsc.pex -scripts\_00e_game_skillmenusc.pex scripts\_00e_game_movenpctoeditorsc.pex scripts\_00e_game_calculateclasssc.pex scripts\_00e_gambling_chairsc.pex diff --git a/source/Enderal DLL/src/Util.h b/source/Enderal DLL/src/Util.h index e9271921..e2c0385a 100644 --- a/source/Enderal DLL/src/Util.h +++ b/source/Enderal DLL/src/Util.h @@ -44,8 +44,9 @@ inline void CheckIncompatibleMods() RE::ConsoleLog::GetSingleton()->Print("Loaded SureAI's Enderal: Forgotten Stories | Special Edition v2.0.x by Eddoursul and contributors"); } - if (RE::BSResourceNiBinaryStream("scripts/_00e_questfunctions.pex").good() || RE::TESDataHandler::GetSingleton()->LookupForm(0x10AA2, "Skyrim.esm")) { - RE::DebugMessageBox("OUTDATED MOD: One of your mods modifies the Levelsystem quest or its script _00E_QuestFunctions, no longer used in Enderal SE 2.1+"); + if (RE::BSResourceNiBinaryStream("scripts/_00e_questfunctions.pex").good() || RE::BSResourceNiBinaryStream("scripts/_00e_game_skillmenusc.pex").good() || RE::TESDataHandler::GetSingleton()->LookupForm(0x10AA2, "Skyrim.esm")) + { + RE::DebugMessageBox("OUTDATED MOD: One of your mods modifies the Levelsystem quest or its scripts (_00E_QuestFunctions or _00E_Game_SkillmenuSC), no longer used in Enderal SE 2.1+"); } CheckWorldspaces(); diff --git a/source/scripts/_00e_game_skillmenusc.psc b/source/scripts/_00e_game_skillmenusc.psc deleted file mode 100644 index 905ee70e..00000000 --- a/source/scripts/_00e_game_skillmenusc.psc +++ /dev/null @@ -1,9 +0,0 @@ -Scriptname _00E_Game_SkillmenuSC extends ReferenceAlias - -Event OnInit() - Debug.MessageBox("OUTDATED MOD: One of your mods modifies the Levelsystem quest, no longer functional in the current version of Enderal SE.") -EndEvent - -Event OnPlayerLoadGame() - Debug.MessageBox("OUTDATED MOD: One of your mods modifies the Levelsystem quest, no longer functional in the current version of Enderal SE.") -EndEvent