1
Fork 0

Compare commits

...

4 Commits

  1. BIN
      Enderal - Forgotten Stories.esm
  2. 2
      SKSE/Plugins/EnderalVersion.ini
  3. BIN
      scripts/_00E_ContainerBonusControl.pex
  4. BIN
      scripts/_00E_MQ101_QuickStart.pex
  5. 2
      source/Enderal DLL/src/Util.h
  6. 4
      source/scripts/_00E_ContainerBonusControl.psc
  7. 5
      source/scripts/_00E_MQ101_QuickStart.psc
  8. BIN
      strings/skyrim_english.dlstrings

Binary file not shown.

@ -1 +1 @@
version = 2.1
version = 2.1.1

Binary file not shown.

@ -116,7 +116,7 @@ inline void CheckScriptVersions()
scripts["_00E_Theriantrophist_PlayerAsWerewolf"] = 1;
scripts["_00E_Theriantrophist_AlchemyControl"] = 1;
scripts["_00E_PlayerhousingMaster"] = 1;
scripts["_00E_ContainerBonusControl"] = 1;
scripts["_00E_ContainerBonusControl"] = 2;
scripts["_00E_AffinityControl"] = 1;
scripts["_00E_SympathyControl"] = 1;
scripts["_00E_EnderalMCM"] = 1;

@ -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
int function _GetScriptVersion() Global
return 1
return 2
endFunction
;=====================================================================================
@ -24,7 +24,7 @@ function OnOpenContainer(ObjectReference targetContainer)
; Wait for it to open
int i
while i < 20 && targetContainer.GetOpenState() == 2 && ! Utility.IsInMenuMode()
Utility.Wait(0.1)
Utility.WaitMenuMode(0.1)
i += 1
endwhile

@ -22,11 +22,14 @@ function Init()
Debug.SendAnimationEvent(PlayerRef, "IdleForceDefaultState")
Utility.Wait(0.5)
Game.ShowRaceMenu()
(MQP02 as _00E_MQP02_Functions).AddRacialAbilites()
Utility.Wait(0.1)
Game.DisablePlayerControls(abMovement = false, abFighting = true, abCamSwitch = true, abLooking = false, abSneaking = true, abMenu = true, abActivate = false, abJournalTabs = true, aiDisablePOVType = 0)
Game.ForceFirstPerson()
(MQP02 as _00E_MQP02_Functions).AddRacialAbilites()
MQP03.SetCurrentStageID(15)
endfunction

Binary file not shown.
Loading…
Cancel
Save