Compare commits
5 Commits
15bab7d1d7
...
2bdde4ccb2
Author | SHA1 | Date | |
---|---|---|---|
2bdde4ccb2 | |||
fa19371850 | |||
a4a87e75b8 | |||
c9d3f98294 | |||
715f290858 |
Binary file not shown.
@ -6,6 +6,13 @@ See https://en.wiki.sureai.net/Enderal:Patch for the list of official patches up
|
|||||||
Beware, spoilers ahead!
|
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)
|
2.1.0 (2024-03-02)
|
||||||
This update requires starting a new game.
|
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.
|
As of this release, Enderal SE is compatible with Skyrim SE 1.5.97 and 1.6.640-1.6.1179.
|
@ -1 +1 @@
|
|||||||
version = 2.1
|
version = 2.1.1
|
||||||
|
BIN
Skyrim.esm
BIN
Skyrim.esm
Binary file not shown.
BIN
scripts/QuickReflexesFix.pex
Normal file
BIN
scripts/QuickReflexesFix.pex
Normal file
Binary file not shown.
Binary file not shown.
@ -116,7 +116,7 @@ inline void CheckScriptVersions()
|
|||||||
scripts["_00E_Theriantrophist_PlayerAsWerewolf"] = 1;
|
scripts["_00E_Theriantrophist_PlayerAsWerewolf"] = 1;
|
||||||
scripts["_00E_Theriantrophist_AlchemyControl"] = 1;
|
scripts["_00E_Theriantrophist_AlchemyControl"] = 1;
|
||||||
scripts["_00E_PlayerhousingMaster"] = 1;
|
scripts["_00E_PlayerhousingMaster"] = 1;
|
||||||
scripts["_00E_ContainerBonusControl"] = 1;
|
scripts["_00E_ContainerBonusControl"] = 2;
|
||||||
scripts["_00E_AffinityControl"] = 1;
|
scripts["_00E_AffinityControl"] = 1;
|
||||||
scripts["_00E_SympathyControl"] = 1;
|
scripts["_00E_SympathyControl"] = 1;
|
||||||
scripts["_00E_EnderalMCM"] = 1;
|
scripts["_00E_EnderalMCM"] = 1;
|
||||||
|
19
source/scripts/QuickReflexesFix.psc
Normal file
19
source/scripts/QuickReflexesFix.psc
Normal file
@ -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
|
@ -2,7 +2,7 @@ Scriptname _00E_ContainerBonusControl extends Quest Hidden
|
|||||||
; This script sets up the sleight of hand loot of a chest upon activating it
|
; This script sets up the sleight of hand loot of a chest upon activating it
|
||||||
|
|
||||||
int function _GetScriptVersion() Global
|
int function _GetScriptVersion() Global
|
||||||
return 1
|
return 2
|
||||||
endFunction
|
endFunction
|
||||||
|
|
||||||
;=====================================================================================
|
;=====================================================================================
|
||||||
|
Loading…
Reference in New Issue
Block a user