How to make dual wield bound weapons?

Post » Sat Jan 26, 2013 9:31 pm

Is it possible to make dual wield bound weapons? I mean make the player summon two swords at the same time. If it's possible how do I do it.
User avatar
Hairul Hafis
 
Posts: 3516
Joined: Mon Oct 29, 2007 12:22 am

Post » Sat Jan 26, 2013 12:29 pm

Attach a script to the spell's magic effect that does something like:
Event OnEffectStart( Actor akTarget, Actor akCaster)BoundSword2.Cast(akCaster)EndEvent

That's if the magic effect already creates one bound sword, if you want the spell can simply be a script that casts 2 vanilla bound sword spells or 2 custom bound sword spells. It'd look something like this:

Event OnEffectStart( Actor akTarget, Actor akCaster)BoundSword1.Cast(akCaster)BoundSword2.Cast(akCaster)EndEvent

This casts 2 bound sword spells once the spell is fired.
User avatar
Rudi Carter
 
Posts: 3365
Joined: Fri Sep 01, 2006 11:09 pm


Return to V - Skyrim