Jump to content

[Script] Event for Drawing Weapon


Zorkaz

Recommended Posts

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

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...