Scriptname _00E_IntegrityCheckAlias extends ReferenceAlias Hidden 

Event OnInit()

	_00E_SKSE.SetValue(SKSE.GetVersion() as float)
	
	RegisterForSingleUpdate(2.0) ; Give a few seconds for the game to warm up at the start
	
EndEvent

Event OnPlayerLoadGame()
	_00E_SKSE.SetValue(SKSE.GetVersion() as float)
	RegisterForSingleUpdate(1.2)
EndEvent

Event OnUpdate()

	if _00E_FS_IsForgottenStoriesActivated == None
		_00E_FS_IsForgottenStoriesActivated = Game.GetForm(0x4320E) as GlobalVariable
	endif

	; If Enderal - Forgotten Stories.esm is not loaded, kick the player back to main menu
	if _00E_FS_IsForgottenStoriesActivated.GetValue() as Int != 1
		Game.QuitToMainMenu()
		Debug.MessageBox("Enderal - Forgotten Stories.esm is not loaded! The game will not run properly.")
		return
	EndIf

	_00E_Func_CheckSKSE.Run()
	_00E_Func_CheckEnderalDLL.Run()

EndEvent

GlobalVariable Property _00E_FS_IsForgottenStoriesActivated  Auto  
GlobalVariable Property _00E_SKSE Auto