diff --git a/Enderal - Forgotten Stories.esm b/Enderal - Forgotten Stories.esm index 47a65f60..5ea93c97 100644 Binary files a/Enderal - Forgotten Stories.esm and b/Enderal - Forgotten Stories.esm differ diff --git a/Skyrim.esm b/Skyrim.esm index ed74d21f..084476ed 100644 Binary files a/Skyrim.esm and b/Skyrim.esm differ diff --git a/SleightOfHand quest.esp b/SleightOfHand quest.esp deleted file mode 100644 index eabc14a1..00000000 Binary files a/SleightOfHand quest.esp and /dev/null differ diff --git a/scripts/_00E_ScrollUnlockAlias.pex b/scripts/_00E_ScrollUnlockAlias.pex index 000ac1b3..624641ea 100644 Binary files a/scripts/_00E_ScrollUnlockAlias.pex and b/scripts/_00E_ScrollUnlockAlias.pex differ diff --git a/source/scripts/_00E_ScrollUnlockAlias.psc b/source/scripts/_00E_ScrollUnlockAlias.psc index ff5c2be8..af07511c 100644 --- a/source/scripts/_00E_ScrollUnlockAlias.psc +++ b/source/scripts/_00E_ScrollUnlockAlias.psc @@ -22,13 +22,13 @@ bool function UnlockScrollEquipped() endfunction Event OnUpdate() - if UnlockScrollController.IsStopped() - if ! UnlockScrollController.Start() + if UnlockScrollAliases.IsStopped() + if ! UnlockScrollAliases.Start() RegisterForSingleUpdate(0.1) endif - elseif UnlockScrollController.IsStopping() + elseif UnlockScrollAliases.IsStopping() RegisterForSingleUpdate(0.01) - elseif UnlockScrollController.IsStarting() + elseif UnlockScrollAliases.IsStarting() RegisterForSingleUpdate(0.01) endif EndEvent @@ -42,24 +42,24 @@ state Equipped event OnBeginState() ObjectReference actorRef = GetReference() - RegisterForAnimationEvent(actorRef, "MRh_SpellFire_Event") - RegisterForAnimationEvent(actorRef, "MLh_SpellFire_Event") + RegisterForAnimationEvent(actorRef, "BeginCastRight") + RegisterForAnimationEvent(actorRef, "BeginCastLeft") endevent event OnEndState() ObjectReference actorRef = GetReference() - UnregisterForAnimationEvent(actorRef, "MRh_SpellFire_Event") - UnregisterForAnimationEvent(actorRef, "MLh_SpellFire_Event") + UnregisterForAnimationEvent(actorRef, "BeginCastRight") + UnregisterForAnimationEvent(actorRef, "BeginCastLeft") endevent Event OnUpdate() - if UnlockScrollController.IsStopped() - if ! UnlockScrollController.Start() + if UnlockScrollAliases.IsStopped() + if ! UnlockScrollAliases.Start() RegisterForSingleUpdate(0.1) endif - elseif UnlockScrollController.IsStopping() + elseif UnlockScrollAliases.IsStopping() RegisterForSingleUpdate(0.01) - elseif UnlockScrollController.IsStarting() + elseif UnlockScrollAliases.IsStarting() RegisterForSingleUpdate(0.01) endif EndEvent @@ -81,17 +81,17 @@ state Equipped Form baseObject = crosshairRef.GetBaseObject() if baseObject as Container || baseObject as Door ScrollTarget.ForceRefTo(crosshairRef) - UnlockScrollController.Stop() + UnlockScrollAliases.Stop() return endif endif - UnlockScrollController.Stop() + UnlockScrollAliases.Stop() RegisterForSingleUpdate(0.01) ScrollTarget.Clear() endEvent endstate -Quest Property UnlockScrollController Auto +Quest Property UnlockScrollAliases Auto FormList Property _00E_UnlockScrolls Auto ReferenceAlias Property ScrollTarget Auto diff --git a/strings/enderal - forgotten stories_english.strings b/strings/enderal - forgotten stories_english.strings index 4d21f109..a606463a 100644 Binary files a/strings/enderal - forgotten stories_english.strings and b/strings/enderal - forgotten stories_english.strings differ