Recompiled a few scripts

This commit is contained in:
Eddoursul 2022-08-21 23:04:58 +02:00
parent cd19b1547a
commit c085ddc9ca
42 changed files with 2 additions and 2 deletions

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -2,7 +2,7 @@ Scriptname _00E_FS_HeavySaddleSC extends ObjectReference
Event OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldContainer)
if akNewContainer == Game.GetPlayer()
if akNewContainer == Game.GetForm(0x14)
if PlayerHorse.GetActorBase().GetOutfit() != _00E_FS_HeavySaddleOutfit
@ -13,7 +13,7 @@ Event OnContainerChanged(ObjectReference akNewContainer, ObjectReference akOldCo
PlayerHorse.SetActorValue("speedMult", PlayerHorse.GetAV("speedMult")*1.20)
Game.GetPlayer().RemoveItem(_00E_FS_HeavySaddleItem, 1)
akNewContainer.RemoveItem(_00E_FS_HeavySaddleItem, 1)
endif