• 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

editor spell discription issue

Minous

Well-known member
I am working on adding the PFS boons to HL, and there are several that give you the ability to cast one of 3-4 spells as a spell like ability. I am trying to get the spell text included in the boon, but spInfo.x one displays 2 or so spells. Additional descriptions do not appear.
 
There is a limit to how much text can be displayed, depending on the length of of the spells description you might run into that. I think a better option would be to just display the spell info text for the spell this ability actually chooses.
 
Issue is the boons lists several options, one example from 7-23 is:

Zey’s Gratitude:
You have earned the grudging respect of former Master of Spells Aram Zey in return for saving his life. In addition to treating you less derisively than he does most other Pathfinders, he offers you a future spellcasting favor, allowing you to use one of the following spells as a spell-like ability. Use your character level as your caster level, and use your own Intelligence or Charisma score or 20 (whichever is higher) when determining spell DCs. Check the box that precedes this boon when you use the spell-like ability.

Subtier 7–8: You may cast dispel magic, fireball, greater invisibility, or stoneskin.
Subtier 10–11: You may cast chain lightning, fireball, greater dispel magic, greater heroism, greater invisibility, or stoneskin.

Was hoping to be able to get the associated info in the discription but I am hitting the limit you mentioned.
 
he offers you a future spellcasting favor, allowing you to use one of the following spells as a spell-like ability.
This sounds like to me that its only ONE of these spells. So have a dropdown box to select which single spell the person picks. Then pull the SpInfo.? tag from the chosen Thing. That way you get the spell information for a single spell and won't have a text length issue.
 
A dropdown would be a viable work around. The way those PFS Boons work is you get to choose which of those you cast when you cross it off the sheet. That way it gives a little flexibility for future game play.
 
The other alternative would be to add bootstraps of all those SLAs, and use the parent charges mechanism so that they all draw from the same set of uses/period (in this case; 1 use, period), and once one of them is used, they'll all show as used. To do that, add Helper.AlwaysAvl and Helper.TrackCharg to the boon, along with the correct usage information. On the spells, give them ChargeUse.1, and you may also need to give them all the other usage information except the number 1 (specifically, the Usage.UsedUp tag and the setting to make it not reset with a night's rest).

That way, the user can read the spell info on the individual spells. It just means a lot of things getting added to the SLA list.
 
Minous - for an example, think rogue talents - there's several in the core rulebook that do something similar.
 
Thanks for the help. I have it working but how do you add a "None" option? I am currently using:
component.BaseSpell & (thingid.spHeroGre5|thingid.spDispMag5) & !Spellbook.?
for listing the spells, but I also want to be able to select the "None" option as well.
 
Back
Top