Compare commits

..

2 Commits

4 changed files with 12 additions and 1 deletions

BIN
Alchemy overhaul.esp Normal file

Binary file not shown.

Binary file not shown.

View File

@ -4794,3 +4794,4 @@ scripts\prkf__00e_se_dismantleperk_03009d21.pex
scripts\prkf__00e_fs_nq07_craftpotio_0300146e.pex
scripts\prkf__00e_craftquestpotionpe_0300146d.pex
scripts\pf_mq14_sc06_toriusstandstil_0003c597.pex
scripts\_00E_UpdateSpeedmult.pex

View File

@ -0,0 +1,10 @@
Scriptname _00E_UpdateSpeedmult extends activemagiceffect
Event OnEffectStart(Actor akTarget, Actor akCaster)
; Force movement speed update
akTarget.ModActorValue("InventoryWeight", -0.1)
Utility.Wait(0.01)
akTarget.ModActorValue("InventoryWeight", 0.1)
EndEvent