4
Fork 0

Set KillMove to 0 with any bVATSDisable value other than 0

english-generic-dialogue
Eddoursul 2 years ago
parent ebb183c078
commit b067358a7e
  1. BIN
      scripts/_00e_playersetupscript.pex
  2. 9
      source/scripts/_00e_playersetupscript.psc

@ -163,12 +163,13 @@ Function EnableDisableKillmove()
; 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 (Utility.GetINIBool("bVATSDisable:VATS") == 1)
KillMove.SetValueInt(0)
ElseIf (Utility.GetINIBool("bVATSDisable:VATS") == 0)
If Utility.GetINIBool("bVATSDisable:VATS") == false
KillMove.SetValueInt(1)
Else
KillMove.SetValueInt(0)
EndIf
EndFunction
Function SetAutoSaveInterval()

Loading…
Cancel
Save