• 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

Retriving another Thing's Description text...

RavenX

Well-known member
Mathias,

How do I get hero lab to retrieve the description text of another item to append it to the description of something? I know in Pathfinder this can be accomplished with a tag, but how I would implement that? Do I need to shadow all the things to the hero so it can be retrieved?
 
I too am wondering the same thing. I have skill specialties that have a tag for the associated skill. It would be nice to be able to add the text of the Skill name automagically when displayed.
 
Code:
foreach thing in [I]component[/I] where "[I]tag expression[/I]"
     @text &= eachthing.field[descript].text
     nexteach
Be careful to use eachthing, not eachpick, in a thing-based foreach like this one.
 
Back
Top