TobiaszPL Posted May 19, 2019 Posted May 19, 2019 is there any way to script event that start when- Bow use- Bow Shot- Weapon hit- Spell shot- Power use ? :Di want to add script to weapons and spells and powers and then this power / spell / weapon is use by any1 then event is starting xD lel... :c...rly need this
Ghaunadaur Posted May 19, 2019 Posted May 19, 2019 (edited) Most of these events can be triggered by OnActorAction. That event needs to be registered for with RegisterForActorAction first. It's also possible to use OnAnimationEvent for some of the actions. It needs to be registered as well. A list with animation events can be found here, but it's not complete. And lastly there's OnPlayerBowShot. As far as I remember it only works for bows, but not crossbows. I have to add that these script events are not for use on weapons, but on a Player/NPC alias. Edited May 19, 2019 by Ghaunadaur
maxarturo Posted May 19, 2019 Posted May 19, 2019 (edited) As Ghaunadaur said - suggested. I think the best way to go is with "OnAnimationEvent", because it covers the majority of the actions you want your script to fire. Edited May 19, 2019 by maxarturo
Recommended Posts