4
Fork 0

Merged new MCM options

development
Eddoursul 4 months ago
parent 719d00d4b6
commit 59698590b4
  1. BIN
      Enderal - Forgotten Stories.esm
  2. BIN
      Separated health bar controls.esp
  3. BIN
      scripts/_00E_SyncKillMoveAlias.pex
  4. 34
      source/scripts/_00E_SyncKillMoveAlias.psc
  5. BIN
      strings/enderal - forgotten stories_english.dlstrings
  6. BIN
      strings/enderal - forgotten stories_english.strings

Binary file not shown.

Binary file not shown.

@ -1,34 +0,0 @@
Scriptname _00E_SyncKillMoveAlias extends ReferenceAlias
GlobalVariable Property KillMove Auto
Event OnInit()
; it seems like that this ini setting does not do stuff by itself (or it is bugged)
; therefore we need to read it from the file and change the global with which the killmoves are conditioned
if SKSE.GetVersion() == 0
return
endif
If Utility.GetINIBool("bVATSDisable:VATS")
KillMove.SetValue(0.0)
Else
KillMove.SetValue(1.0)
EndIf
EndEvent
Event OnPlayerLoadGame()
if SKSE.GetVersion() == 0
return
endif
If Utility.GetINIBool("bVATSDisable:VATS")
KillMove.SetValue(0.0)
Else
KillMove.SetValue(1.0)
EndIf
EndEvent
Loading…
Cancel
Save