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.
 
 
 

13 lines
506 B

Scriptname BeeHiveHavokOnHit extends ObjectReference
{Stops the beehive from havoking until hit.}
Event OnLoad()
; Debug.Trace("This object is loaded, playing animations should work now")
self.SetMotionType(Motion_Keyframed, true)
endEvent
Event OnHit(ObjectReference akAggressor, Form akSource, Projectile akProjectile, bool abPowerAttack, bool abSneakAttack, bool abBashAttack, bool abHitBlocked)
; Debug.Trace("I just got hit by something")
self.SetMotionType(Motion_Dynamic, true)
endEvent