Nitroxone Posted February 28, 2017 Share Posted February 28, 2017 (edited) Hello Nexus community, I am very new to Papyrus, and I would like to create a very simple spell that plays the short idle "IdleSilentBow" (the idle of the Greybeards when you talk to them, when they say "Dovahkiin" and the ground shakes) on the player (so a Fire and Forget Spell on Self). I've searched everywhere on the Internet but I can't seem to find any solution to this .. Anyone help ? Thanks in advance :smile: ! (I'm french so my english may be really bad ^^') Edited February 28, 2017 by Nitroxone Link to comment Share on other sites More sharing options...
Elias555 Posted March 2, 2017 Share Posted March 2, 2017 Try this: Scriptname AnimationScript extends ActiveMagicEffect Actor Property SpellSubject Auto Event OnEffectStart(Actor akTarget, Actor akCaster) SpellSubject = akTarget RegisterForSingleUpdate(1.0) ;we will run updates every second, this should be fast enough whilst not being too fast/expensive. EndEvent Event OnUpdate() RegisterForSingleUpdate(1.0) Debug.SendAnimationEvent(SpellSubject,"IdleSilentBow") UnregisterForUpdate() ;we don't want to send this multiple times. EndEvent Event OnEffectFinish(Actor akTarget, Actor akCaster) ;when they die or spell duration expires. UnregisterForUpdate() EndEvent Link to comment Share on other sites More sharing options...
IronDusk33 Posted March 2, 2017 Share Posted March 2, 2017 My mod Emote does this, and allows you to play a lot of other animations. Feel free to look at the source code, or just download it and use it as is. Link to comment Share on other sites More sharing options...
Recommended Posts