enderalse/source/scripts/_00e_func_checkskse.psc

15 lines
315 B
Plaintext

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 skse64_loader.exe in the game directory.")
endif
EndFunction