enderalse/source/scripts/_00e_ski_playerloadgamealias.psc
2024-02-04 23:35:54 +01:00

26 lines
687 B
Plaintext

scriptname _00E_SKI_PlayerLoadGameAlias extends ReferenceAlias
event OnInit()
; Utility.GetINIBool() is an SKSE function
if SKSE.GetVersion() > 0
; On new game, set KillMove value from INI
KillMove.SetValue((! Utility.GetINIBool("bVATSDisable:VATS")) as float)
else
Utility.SetINIBool("bVATSDisable:VATS", ! KillMove.GetValue())
endif
endevent
event OnPlayerLoadGame()
; On game load, set INI value from KillMove
Utility.SetINIBool("bVATSDisable:VATS", ! KillMove.GetValue())
Quest bSkyUI = Game.GetFormFromFile(0x802, "SkyUI_SE.esp") as Quest
if bSkyUI
(GetOwningQuest() as _00E_EnderalMCM).OnGameReload()
endif
endEvent
GlobalVariable Property KillMove Auto