Zorkaz Posted June 17, 2021 Share Posted June 17, 2021 Does anyone know if there's an Event for when the weapon is drawn? Link to comment Share on other sites More sharing options...
dylbill Posted June 18, 2021 Share Posted June 18, 2021 You can use an animation event: Actor Property SomeActor Auto Event OnInit() RegisterForAnimationEvent(SomeActor, "weaponDraw") Endevent Event OnAnimationEvent(ObjectReference akSource, string asEventName) If asEventName == "weaponDraw" ;only needed if registering for more than 1 animation event. ;do something Endif EndEvent Link to comment Share on other sites More sharing options...
Zorkaz Posted June 18, 2021 Author Share Posted June 18, 2021 Good Idea thx Link to comment Share on other sites More sharing options...
dylbill Posted June 18, 2021 Share Posted June 18, 2021 No problem. Link to comment Share on other sites More sharing options...
Recommended Posts