4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

25 lines
848 B

Scriptname _00E_ConfigMenu extends SKI_ConfigBase
{Obsolete MCM script}
;=====================================================================================
; 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