• 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

A little help?

ErinRigh

Well-known member
Is it possible to script a change as a variant class that transforms divine spellcasting into arcane spellcasting?

Basically, I want to take a Paladin and trade their divine paladin spells for arcane wizard spells.
 
Is it possible to script a change as a variant class that transforms divine spellcasting into arcane spellcasting?
There is a Arcane/Divine tag on the cHelp class Thing. You just need to delete the Divine and add the Arcane.

I don't remember the tag ids off the top of my head. But if you look at the Paladin class you can see it.

Basically, I want to take a Paladin and trade their divine paladin spells for arcane wizard spells.
This would be more about changing the spell list custom expression as HL really does not know the difference between arcane/divine.

Doesn't the variant class already have that option in the editor? I maybe thinking about archetypes from Pathfinder already having this.

If you need more details I can look once I get home.
 
Well, I am wanting to assign arcane tag so that I can use the class with Arch mage which requires sacrifice of arcane spells.

I need the details on stripping the hero.divine tag and pushing the hero.arcane tag
 
I made one little change to the script but what you had appears to be working fine. First don't ever use a .por file when creating something new. It always causes issues as things get "stuck". So try this out on a fresh new paladin character and see if it works.

I removed the script of the remove Hero.Divine and Hero.Arcane that you had listed 12 time and replace it with this:
Code:
perform linkage[varies].delete[CasterSrc.Divine]
perform linkage[varies].assign[CasterSrc.Arcane]
That converts the Paladin from a divine to a Arcane caster.

If you think something is not working please be specific about what you see as wrong. I don't currently see anything. :)
 

Attachments

Back
Top