• 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

Can I add spells my Wands/Staff cast?

Wakrob

Member
I want to add the spell descriptions of the spells my new staff can cast. Is there a way I can get them to list on any of my print out sheets?

Wakrob
 
Well, one way would be to add a hero to your portfolio, give the hero the same spells as the wand or staff, and print the spell descriptions from that hero.

Not sure if that's the BEST way, but it will work.
 
I want to add the spell descriptions of the spells my new staff can cast. Is there a way I can get them to list on any of my print out sheets?

Wakrob
You say "new" staff so do you mean you are making a Custom Staff in the editor? Or is this staff from a book that just happens to be "new" to your character?
 
You say "new" staff so do you mean you are making a Custom Staff in the editor? Or is this staff from a book that just happens to be "new" to your character?

Staff in book. Staff of Journeys to be exact. They are all Druidish type spells and Im a sorcerer....so none are on my list.

Wakrob
 
you could use shadow's adjustments and make it where druid spells show up for your sorcerer's list pf spells to be able to cast; Add spell type to class spell list adjustment.
 
So I was able to create a new adjustment that will force the Spells on a Staff to print to a character sheet. This will be in the next release of the "Pathfinder Basic Pack".

If you want to add it yourself here is the script:
Final/50000
Code:
      ~ If we're not enabled, get out now
      doneif (field[pIsOn].value = 0)

      ~ We need to make sure we are caster
      perform hero.assign[Hero.Caster]

      ~ If we're not in output mode, don't do anything
      doneif (state.isoutput = 0)

      ~ Make all "item" spells print to character sheet
      foreach pick in hero from BaseSpell where "Helper.ItemSpell"      
        perform eachpick.delete[Helper.?]
      nexteach
 
Back
Top