• 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

question on situational text

AndrewD2

Well-known member
Is it possible to apply it to AC? I have an ability i'm working on that gives +2 AC vs. spells and I tried:

Code:
#situational[hero.child[ArmorClass], signed(field[abValue].value & " bonus vs. spells with attack rolls", field[thingname].text

and a few permutations of it, but it errors on me.
 
still errors on me

Hero Lab was forced to stop compilation after the following errors were detected:

Syntax error in 'eval' script for Thing 'cESFamMag' (Eval Script '#1') on line 4
-> Invalid macro reference encountered in script
 
You forgot a ending ].

fixed
Code:
#situational[hero.child[ArmorClass], signed(field[abValue].value) & " bonus vs. spells with attack rolls", field[thingname].text]
 
Thanks Shadow and Aaron, I was working on this long after I should have been in bed. I think I was just to tired to notice.
 
Back
Top