enderalse/source/scripts/_00e_configmenu.psc

26 lines
848 B
Plaintext
Raw Normal View History

2022-08-01 12:42:32 +00:00
Scriptname _00E_ConfigMenu extends SKI_ConfigBase
{Obsolete MCM script}
2022-08-01 12:42:32 +00:00
;=====================================================================================
; EVENTS
;=====================================================================================
function OnGameReload()
; do nothing
endFunction
function OnConfigManagerReady(String a_eventName, String a_strArg, Float a_numArg, Form a_sender)
Quest rSkyUI = Game.GetFormFromFile(0x802, "SkyUI_SE.esp") as Quest
if rSkyUI
(rSkyUI as SKI_ConfigManager).UnregisterMod(self)
endif
endFunction
auto state DoNothing
function OnGameReload()
UnregisterForModEvent("SKICP_configManagerReady")
endFunction
function OnConfigManagerReady(String a_eventName, String a_strArg, Float a_numArg, Form a_sender)
; do nothing
endFunction
endstate