Mathias,
I'm trying to figure out how to limit the tag expression so that prepared spell choice is limited to the spells in the spellbook. I can't seem to understand what part of the spell expression tells herolab to limit it to spellbook spells though.
I have two tag expressions set up so far
for the spell book expression
and
for pathfinder I noticed there is an extra bit in the cSpellExpr tag expr,
What is this piece used for?
Here is my portal for prepared spells:
I'm trying to figure out how to limit the tag expression so that prepared spell choice is limited to the spells in the spellbook. I can't seem to understand what part of the spell expression tells herolab to limit it to spellbook spells though.
I have two tag expressions set up so far
Code:
[I][COLOR="Navy"]cSplBkExpr = (spClass.cMage) & !Hide.Spell & !Helper.Helper[/COLOR][/I]
and
Code:
[COLOR="Navy"][I]cSpellExpr = (spClass.cMage & Spellbook.cMage) & !Hide.Spell & !Helper.Helper[/I][/COLOR]
for pathfinder I noticed there is an extra bit in the cSpellExpr tag expr,
Code:
[COLOR="Navy"][I]hero#HasWizSplb[/I][/COLOR]
Here is my portal for prepared spells:
Code:
<portal
id="clSpellAdd"
style="tblInvis">
<table_dynamic
component="Spell"
showtemplate="clSpelThin"
choosetemplate="clSpelPick"
showsortset="Spells"
choosesortset="Spells"
useagentadd="yes"
useagentcandidate="yes"
agentlist="SpellSort"
agentautotag="SpellSort"
useagentlinkage="yes"
candidatefield="clSpelExpr">
<list></list>
<candidate></candidate>
<headertitle><![CDATA[
@text = "Spells"
]]></headertitle>
<additem>
@text = "Add Prepared Spells"
</additem>
</table_dynamic>
</portal>
Last edited: