balmunng Posted February 18, 2012 Share Posted February 18, 2012 Ok, what I ask is probably going to, with little doubt, give me a answer of no, because of how 'impossible' it may seem. Is it possible to have a spell 'instantly' cast itself upon drawing your hands with either r or clicking on the mouse? (I.E.: If you wanted to instantly summon a bound weapon by clicking, would it be possible?) Link to comment Share on other sites More sharing options...
thor220 Posted February 18, 2012 Share Posted February 18, 2012 You can set a perk to apply on equip. Or you can either find the spells with the shortest animation. I'm sure you could also do it with some extended scripting unless there is some method I am not aware of. Just giving my 2 cents. Link to comment Share on other sites More sharing options...
expired6978 Posted February 18, 2012 Share Posted February 18, 2012 (edited) The OnEquipped does not trigger when drawing your weapon. The "CastSpell" function however, will cast a spell instantly, the only way to not cast a spell instantly and animate an actor is to use a procedure aka package "UseMagic". I strongly suggest NOT using an OnUpdate to poll whether your weapon is drawn either, as someone is bound to suggest. The best way would be to use a Quest ReferenceAlias to add a script to the player's Actor and use "OnAnimationEvent" as your event trigger, look in the animations list for the associated animation event for drawing your weapon. Use your created quest to hold your variables and set them as "Conditional" so the VM can associate your variables elsewhere and NOT USE GLOBALS. Edited February 18, 2012 by expired6978 Link to comment Share on other sites More sharing options...
Recommended Posts