4
Fork 0

Merged service repository

remove-levelsystem
Eddoursul 4 months ago
parent 31c4d61468
commit d5f679b2c3
  1. BIN
      Enderal - Forgotten Stories.esm
  2. BIN
      FadeToBlack.esp
  3. BIN
      Skyrim.esm
  4. BIN
      scripts/_00e_playerfunctions.pex
  5. 19
      source/scripts/_00e_playerfunctions.psc

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

@ -1,15 +1,30 @@
Scriptname _00E_PlayerFunctions extends actor
_00E_EnderalControls Property ControlRepository Auto
Float fDefaultHeadTrackTimerOldValue = 0.0
Float fStayHeadTrackTimerOldValue = 0.0
int function _GetScriptVersion() Global
return 1
endFunction
Event OnInit()
fDefaultHeadTrackTimerOldValue = Game.GetGameSettingFloat("fAIHoldDefaultHeadTrackTimer")
fStayHeadTrackTimerOldValue = Game.GetGameSettingFloat("fAIStayonScriptHeadtrack")
if ControlRepository == None
ControlRepository = Game.GetForm(0x493C2) as _00E_EnderalControls
endif
EndEvent
int function _GetScriptVersion() Global
return 1
Event OnPlayerLoadGame()
if ControlRepository == None
ControlRepository = Game.GetForm(0x493C2) as _00E_EnderalControls
endif
EndEvent
_00E_EnderalControls function Controls()
return ControlRepository
endFunction

Loading…
Cancel
Save