Petenks Posted April 2, 2012 Share Posted April 2, 2012 Self-explanatory, you use the spell, you get two Bound Swords instead of just one in one-cast. Here's the script I have so-far. The result is it just summons one sword, dunno what I'm doing wrong here. Scriptname DoubleMagicSword extends ActiveMagicEffect MagicEffect Property BoundDoubleSwords AutoWeapon Property BoundSword1 AutoWeapon Property BoundSword2 Auto EVENT OnEffectStart(Actor Target, Actor Caster) ;Create and equip first sword caster.additem(boundsword1,1,TRUE) caster.equipItem(boundsword1, TRUE, TRUE) ;Create and equip second sword caster.additem(boundsword2,1,TRUE) caster.equipItem(boundsword2, TRUE, TRUE)endEVENT EVENT onLoad() if !(getCasterActor().hasMagicEffect(BoundDoubleSwords)) dispel() endifendEVENT Link to comment Share on other sites More sharing options...
Recommended Posts