4
Fork 0
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

19 lines
675 B

Scriptname _00E_MQ12c_AniStuckFixSC extends ObjectReference
;This script is basically a failsafe for report ERB-1537. It will prevent the animation stuck on the bed, however the true cause of the bug is still unknown
Event OnTriggerEnter(ObjectReference akActionRef)
If MQ12c.GetCurrentStageID() == 5 && akActionRef == PlayerREF && PlayerREF.IsWeaponDrawn()
PlayerREF.AddItem(GasTrapDummy, 1, 1)
PlayerREF.EquipItem(GasTrapDummy, 0, 1)
Utility.Wait(1)
_00E_EquipControl.SheatheWeapon(PlayerREF)
PlayerREF.RemoveItem(GasTrapDummy, 1, 1)
Self.Disable()
EndIf
EndEvent
Actor Property PlayerREF Auto
Quest Property MQ12c Auto
Weapon Property GasTrapDummy Auto