Scriptname _00E_Func_CheckSKSE Hidden

Function Run() global

	; SKSE is currently mandatory
	Int SKSEVer = SKSE.GetVersion()

	if SKSEVer == 0
		Utility.wait(2.0)
		Game.QuitToMainMenu()
		Debug.MessageBox("SKSE is not detected! Start Enderal through the launcher or skse64_loader.exe in the game directory.")
		Return
	endif

EndFunction