• 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

Feat to add spells to spell list

AndrewD2

Well-known member
So I pretty much copied Unsanctioned Knowledge for this feat. It's for a monk archetype that gives spellcasting and this feat allows it to add a spell to it's spell list much like unsanctioned knowledge does for the Paladin.

my code:

Post-Levels/9000
Code:
      ~ If we're disabled, do nothing
      doneif (tagis[Helper.FtDisable] <> 0)
      
      if (field[usrChosen1].ischosen <> 0) then
        ~ Add our spell to the spell list
        perform field[usrChosen1].chosen.pulltags[ClsAllowSp.?]
        perform hero.childfound[cHelpMnk].pushtags[ClsAllowSp.?]
        endif

My custom expression is working fine to show the list of spells, but the spell isn't showing up in the list of available spells to take.

Any ideas?

Andrew
 
Have you looked at the Qingong monk archetype ki powers that grant spells for other ideas.

I'm not near HL at the moment but I'm wondering if there is a special monk version of the spells that the monk can pick.

Just a suggestion.
 
Qingong Monk just adds them as spelllike abilities, this adds them to the list.

Yes I know, but as far as I can see there aren't any Monk spells in Pathfinder.
Unless I'm thinking about this all wrong you'd have to create a monk version of the spells.
 
Ignore my blindness ... my code is working I just wasn't seeing the spell I was adding, but I did a serach for it and it comes up so I'm just blind.
 
Back
Top