Nesrual Posted May 1, 2012 Share Posted May 1, 2012 So, it's been a while since I started modding, and I just learnt how to make custom conjuration spells (you know, with like chickens and dragons). But I've been trying to find out how the heck to be able to do a mass summon (conjuring more than one when you cast the spell, and making the currently summoned ones not dissappear when you use the spell again). I hope you guys can help me! Thanks. Link to comment Share on other sites More sharing options...
eschaeon Posted May 1, 2012 Share Posted May 1, 2012 Make one spell and add multiple spell effects for each summon. Link to comment Share on other sites More sharing options...
Nesrual Posted May 2, 2012 Author Share Posted May 2, 2012 Do you mean like make new magic effects for every chicken that i'm going to summon, or just add the same spell effects multiple times for my spell? Because none of those worked. :l Link to comment Share on other sites More sharing options...
Havoc6k Posted May 2, 2012 Share Posted May 2, 2012 (edited) Create a magic effect for each 1 of the summons, link it to a spell, then create a script (New magic effect, select Script), before doing the source (coding) add the properties of each summon, New property - SPELL, find your custom one's and add them. Right click on the script and select edit source, you should see (if you add the properties), if you didnt add them you can type it manually and add it later, follow the structure: SPELL property (YourSpell1) autoSPELL property (YourSpell2) auto etc etc, depending on how much u add, at the bottom of this add: EVENT OnEffectStart(Actor Target, Actor Caster) YourSpell1.Cast(Caster) YourSpel2.Cast(Caster) etcENDEvent if you want u can add after EVENT OnEffectFinish(Actor Target, Actor Caster)YourSpell1.Dispel(Caster) etc etc (this would occur when your timer runs out, that you set the spell 2) You can tie the script to any other magic effect, for instance a summon dremora lord spell (Magic effect), magic effect is what the spell calls, in game hope this helps. Edited May 2, 2012 by Havoc6k Link to comment Share on other sites More sharing options...
Nesrual Posted May 2, 2012 Author Share Posted May 2, 2012 (edited) That sounds complicated, but I'll try it out! :) Edited May 3, 2012 by Nesrual Link to comment Share on other sites More sharing options...
Recommended Posts