diff --git a/interface/skyui/buttonart.swf b/interface/skyui/buttonart.swf new file mode 100644 index 00000000..9569e4f9 --- /dev/null +++ b/interface/skyui/buttonart.swf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:dab24e97d0d21f2cf24f2629005bdb9185697deac64f82ceadb38827a7f98b4f +size 19042 diff --git a/interface/skyui/configpanel.swf b/interface/skyui/configpanel.swf new file mode 100644 index 00000000..12414bee --- /dev/null +++ b/interface/skyui/configpanel.swf @@ -0,0 +1,3 @@ +version https://git-lfs.github.com/spec/v1 +oid sha256:e76604bd0c228b62c3fd5e91fa0393f94ccc993b100ee63708183f235aebdfac +size 56045 diff --git a/scripts/_00e_func_checkskyui.pex b/scripts/_00e_func_checkskyui.pex deleted file mode 100644 index 46f23189..00000000 Binary files a/scripts/_00e_func_checkskyui.pex and /dev/null differ diff --git a/scripts/_00e_playersetupscript.pex b/scripts/_00e_playersetupscript.pex index fc9cf840..1e801612 100644 Binary files a/scripts/_00e_playersetupscript.pex and b/scripts/_00e_playersetupscript.pex differ diff --git a/source/scripts/_00e_func_checkskyui.psc b/source/scripts/_00e_func_checkskyui.psc deleted file mode 100644 index dc60cc6a..00000000 --- a/source/scripts/_00e_func_checkskyui.psc +++ /dev/null @@ -1,15 +0,0 @@ -Scriptname _00E_Func_CheckSkyUI Hidden - -Function Run() global - - ; SkyUI is optional - override quest_journal.swf with the vanilla file, remove this check, and you are good to go - Quest bSkyUI = Game.GetFormFromFile(0x802, "SkyUI_SE.esp") as Quest - - If bSkyUI == None - Utility.wait(2.0) - Game.QuitToMainMenu() - Debug.MessageBox("SkyUI_SE.esp is not loaded! The game will not run properly. Open Data Files and enable it.") - Return - EndIf - -EndFunction diff --git a/source/scripts/_00e_gui_actorhealthbar.psc b/source/scripts/_00e_gui_actorhealthbar.psc index 874b86ad..bac3a8df 100644 --- a/source/scripts/_00e_gui_actorhealthbar.psc +++ b/source/scripts/_00e_gui_actorhealthbar.psc @@ -110,6 +110,11 @@ event OnWidgetReset() endEvent event OnGameReload() + + If Game.GetModByName("SkyUI_SE.esp") == 255 + return + endif + parent.OnGameReload() if _currentlyDisplayedActors.length == 0 diff --git a/source/scripts/_00e_playersetupscript.psc b/source/scripts/_00e_playersetupscript.psc index 36260c35..d33c87f5 100644 --- a/source/scripts/_00e_playersetupscript.psc +++ b/source/scripts/_00e_playersetupscript.psc @@ -22,7 +22,6 @@ Event OnInit() CheckForgottenStories() _00E_Func_CheckSKSE.Run() - _00E_Func_CheckSkyUI.Run() _00E_Func_CheckEnderalDLL.Run() _00E_Func_CheckJContainers.Run() @@ -58,7 +57,6 @@ Event OnPlayerLoadGame() CheckForgottenStories() _00E_Func_CheckSKSE.Run() - _00E_Func_CheckSkyUI.Run() _00E_Func_CheckEnderalDLL.Run() _00E_Func_CheckJContainers.Run()