1
Fork 0

Compare commits

...

2 Commits

  1. 7
      Enderal SE v2.1.1 Changelog.txt
  2. BIN
      Skyrim.esm
  3. BIN
      scripts/QuickReflexesFix.pex
  4. BIN
      scripts/_00E_ContainerBonusControl.pex
  5. 19
      source/scripts/QuickReflexesFix.psc

@ -6,6 +6,13 @@ See https://en.wiki.sureai.net/Enderal:Patch for the list of official patches up
Beware, spoilers ahead!
2.1.1 (2024-04-24)
- Fixed hidden stashes not showing up.
- Fixed incorrectly assigned racial bonus during quick start.
- Fixed the Quick Reflexes slow down effect sometimes getting stuck.
- Fixed description of the "Vandal: Barbarian" perk (thanks, LevinLozenges).
2.1.0 (2024-03-02)
This update requires starting a new game.
As of this release, Enderal SE is compatible with Skyrim SE 1.5.97 and 1.6.640-1.6.1179.

Binary file not shown.

Binary file not shown.

@ -0,0 +1,19 @@
ScriptName QuickReflexesFix extends activemagiceffect
Spell Property PerkQuickReflexes Auto
float Property fUpdateTime Auto
Event OnEffectStart(Actor akCaster, Actor akTarget)
If akCaster == Game.GetForm(0x14)
if SKSE.GetVersion()
fUpdateTime = GetDuration()
endif
RegisterForSingleUpdate(fUpdateTime + 0.05)
EndIf
EndEvent
; Since this is a Fire and Forget spell, this update normally gets unregistered before OnUpdate() ever fires
Event OnUpdate()
(Game.GetForm(0x14) as Actor).DispelSpell(PerkQuickReflexes)
EndEvent
Loading…
Cancel
Save