• 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

Change oracle of nature to use druid spells

Xykal

Active member
Is there a way to change an oracle of nature to use the druid list instead of the cleric list by way of an archetype?

Thanks for your help!
 
On the archetype click on "Tags". Then add a new tag entry. For "Group Id:" put in sClass for "Tag Id:" put in cHelpDrd.

Add a new "Eval Scripts" with Phase: First Priority: 100.
Code:
perform hero.child[cHelpOra].delete[sClass.cHelpOra]

Thanks to Rethlyr or I would not have known this actually. :)
 
On the archetype click on "Tags". Then add a new tag entry. For "Group Id:" put in sClass for "Tag Id:" put in cHelpDrd.

Add a new "Eval Scripts" with Phase: First Priority: 100.
Code:
perform hero.child[cHelpOra].delete[sClass.cHelpOra]

Thanks to Rethlyr or I would not have known this actually. :)

Works great. Thanks a bunch!
 
Updated Code

Sorry for the serious thread necromancy work, but this message appears in Google search results (which is how my friend came across it), and 2 hours of helping him figure this out should be passed on!

As of now (2014), the Eval Script needs to be changed to the below. Oracles don't have 'Oracle' spells - they have Cleric spells! It's always the little things that trip you up...

Code:
perform hero.child[cHelpOra].delete[sClass.cHelpClr]

This successfully removed Cleric spells from the Oracle spell list. Everything else was spot on!

Hope ya'll have a good Friday!
 
Back
Top