• Please note: In an effort to ensure that all of our users feel welcome on our forums, we’ve updated our forum rules. You can review the updated rules here: http://forums.wolflair.com/showthread.php?t=5528.

    If a fellow Community member is not following the forum rules, please report the post by clicking the Report button (the red yield sign on the left) located on every post. This will notify the moderators directly. If you have any questions about these new rules, please contact support@wolflair.com.

    - The Lone Wolf Development Team

Summoner with Divine Spells

Adam.Ormond

Well-known member
Is there a relatively simple way to create a new class the operates exactly like the Summoner, except receives spells from the Cleric spell list?

I'd be okay with just adding all the Divine spells to the Summoner's list -- just not sure how to go about it without duplicating every spell.
 
I didn't actually run this script but based on the other post you linked it should work. Tweak as needed. The important thing to notice is that we are looping through the "Things" not "picks" this means we are pulling from every spell in HL. Not just the spells that exist on the hero.

Code:
~ If no summoner class get out now
doneif (hero.childlives[cHelpSum] <> 1)

var sTag     as string
var sAllowSp as string

~ Loop through all Spell Things for the cleric class
foreach thing in BaseSpell where "sClass.cHelpClr"
   ~ Pull the spells ThingID
   sTag = eachthing.tagids[thingid.?,"|"]
   ~ Change to Class Allow Spell tag
   sAllowSp = replace(sTag,"thingid.","ClsAllowSp.",0)
   ~ Assign spell to summoner
   perform hero.childfound[cHelpSum].assignstr[sAllowSp]
nexteach
 
Back
Top